Skip to content

Commit

Permalink
GitHub Actions: add workflow definition to produce release artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixSchwarz committed Aug 7, 2024
1 parent 911b806 commit e3a023f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Create Release Artifacts

on:
- workflow_dispatch

jobs:
wheels:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: checkout code
uses: actions/checkout@v4

- name: create Python wheel and sdist
run: |
python setup.py sdist bdist_wheel
- name: upload release artifacts
uses: actions/upload-artifact@v4
with:
name: "release-artifacts"
path: dist/*
if-no-files-found: error

0 comments on commit e3a023f

Please sign in to comment.