Skip to content

AutoGOAL Remote Library #1

AutoGOAL Remote Library

AutoGOAL Remote Library #1

Workflow file for this run

name: Release AutoGOAL Contribs to PyPI
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9.16
architecture: x64
- name: Setup dependencies and build
run: |
pip install poetry==1.2
poetry config virtualenvs.create false
poetry install
poetry build
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
packages-dir: autogoal/dist