Skip to content

Commit

Permalink
Missing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
susuhahnml committed Apr 25, 2024
1 parent 95c415a commit d3d9f16
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: deploy to pypi

on:
workflow_dispatch:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
test:
uses: ./.github/workflows/test.yml

deploy:
name: deploy
needs: test
permissions:
id-token: write
environment: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- 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/"

0 comments on commit d3d9f16

Please sign in to comment.