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 feddf43 commit 86c72b0Copy full SHA for 86c72b0
1 file changed
.github/workflows/boil_release.yaml
@@ -85,13 +85,20 @@ jobs:
85
run: gh release upload "${RELEASE_TAG}" boil-${{ matrix.targets.target }}
86
87
finish-release:
88
+ name: Finish Release
89
needs: [build]
90
runs-on: ubuntu-latest
91
permissions:
92
# Write is needed to finalize the release
93
# See https://github.com/softprops/action-gh-release/blob/153bb8e04406b158c6c84fc1615b65b24149a1fe/README.md?plain=1#L281
94
contents: write
95
steps:
96
+ # This checkout is only here so that a .git directory is present because the gh CLI needs it.
97
+ - name: Checkout
98
+ uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
99
+ with:
100
+ persist-credentials: false
101
+
102
- name: Finish Release
103
env:
104
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments