Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
andife committed Jul 12, 2024
1 parent 4164b92 commit 9a816e7
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,17 @@ jobs:
# For more information about environments and required approvals, see "Using environments for deployment." F
# We can use a separate requirement for deploay

release:
name: Create Release
runs-on: ubuntu-latest
needs: [prepare-release]
if: always() && (needs.prepare-release.result == 'success')

permissions:
contents: write # IMPORTANT: mandatory for making GitHub Releases
id-token: write # IMPORTANT: mandatory for sigstore

steps:
- name: Upload artifact signatures to GitHub Release
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes # TODO check exact variants
env:
Expand Down

0 comments on commit 9a816e7

Please sign in to comment.