v0.2.11 #51
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Python Package | |
on: | |
release: | |
types: [published] | |
concurrency: | |
group: deploy-${{ github.ref }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node dependencies | |
run: npm install | |
- name: Start test server | |
run: docker compose up -d | |
- name: Wait for response | |
uses: nev7n/wait_for_response@v1 | |
with: | |
url: http://localhost:5001/ready/ | |
- name: Run the tests | |
run: node test-fixtures.mjs || exit 1 | |
deploy: | |
runs-on: ubuntu-latest | |
needs: [test] | |
environment: production | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install build dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
- name: Build package | |
run: python -m build | |
- name: Publish package to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |