24 lines
581 B
YAML
24 lines
581 B
YAML
name: Build
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
Build and Push:
|
|
runs-on: docker
|
|
container: www.coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs:latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install dependencies
|
|
run: python3 -m venv .venv && ./.venv/bin/pip install -r ./requirements.txt
|
|
|
|
- name: Build the package
|
|
run: ./.venv/bin/python -m build
|
|
|
|
- name: Publish the package
|
|
uses: actions/pypi-publish@v1
|
|
with:
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|