StellarisModParser/.forgejo/workflows/build.yaml

25 lines
581 B
YAML
Raw Normal View History

2024-06-16 06:56:12 -04:00
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:
2024-06-16 06:56:55 -04:00
password: ${{ secrets.PYPI_API_TOKEN }}