We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4164b92 commit 9a816e7Copy full SHA for 9a816e7
.github/workflows/create_release.yml
@@ -105,6 +105,17 @@ jobs:
105
# For more information about environments and required approvals, see "Using environments for deployment." F
106
# We can use a separate requirement for deploay
107
108
+ release:
109
+ name: Create Release
110
+ runs-on: ubuntu-latest
111
+ needs: [prepare-release]
112
+ if: always() && (needs.prepare-release.result == 'success')
113
+
114
+ permissions:
115
+ contents: write # IMPORTANT: mandatory for making GitHub Releases
116
+ id-token: write # IMPORTANT: mandatory for sigstore
117
118
+ steps:
119
- name: Upload artifact signatures to GitHub Release
120
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes # TODO check exact variants
121
env:
0 commit comments