Skip to content

run tests before deployment #1

run tests before deployment

run tests before deployment #1

Workflow file for this run

name: deploy to pypi
on:
workflow_dispatch:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
test:
uses: .github/workflows/test.yml

Check failure on line 11 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

invalid value workflow reference: no version specified
deploy:
name: deploy
needs: test
permissions:
id-token: write
environment: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
- name: install build dependencies
run: python3 -m pip install build
- name: build package
run: python3 -m build --sdist --wheel --outdir dist/
- name: upload package
uses: actions/upload-artifact@v4
with:
name: package
path: dist/
- name: publish package (pypi)
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: "https://pypi.org/legacy/"
- name: publish package (test.pypi)
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: "https://test.pypi.org/legacy/"