Skip to content

Commit 46fcef1

Browse files
authored
workflows/release: add a release workflow (#17)
Signed-off-by: William Woodruff <[email protected]>
1 parent fd319ac commit 46fcef1

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/release.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on:
2+
release:
3+
types:
4+
- published
5+
6+
name: release
7+
8+
permissions:
9+
# Used to sign the release's artifacts with sigstore-python.
10+
id-token: write
11+
12+
# Used to attach signing artifacts to the published release.
13+
contents: write
14+
15+
jobs:
16+
pypi:
17+
- uses: actions/checkout@v3
18+
19+
- name: sign
20+
uses: ./
21+
id: sigstore-python
22+
with:
23+
inputs: action.yml action.py
24+
upload-signing-artifacts: true

0 commit comments

Comments
 (0)