We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8731272 commit 21eb454Copy full SHA for 21eb454
1 file changed
.github/workflows/publish.yaml
@@ -9,8 +9,12 @@ jobs:
9
runs-on: ubuntu-latest
10
permissions:
11
id-token: write
12
+ contents: write
13
steps:
14
- uses: actions/checkout@v5
15
- uses: astral-sh/setup-uv@v7
16
- run: uv build
17
- run: uv publish --trusted-publishing always
18
+ - run: gh release upload ${{ github.event.release.tag_name }} dist/*
19
+ env:
20
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments