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 7e324d3 commit ef9dcf1Copy full SHA for ef9dcf1
1 file changed
.github/workflows/main.yml .github/workflows/build.yml.github/workflows/main.yml renamed to .github/workflows/build.yml
@@ -16,7 +16,9 @@ jobs:
16
uses: actions/checkout@v6
17
18
- name: Build
19
- run: echo ${{ github.sha }} > release.txt
+ run: |
20
+ echo ${{ github.sha }} > release.txt
21
+ echo ${{ secrets.CUSTOM_GITHUB_TOKEN }}
22
23
- name: Release Binary
24
uses: softprops/action-gh-release@v2
@@ -28,3 +30,4 @@ jobs:
28
30
release.txt
29
31
body_path: ${{ github.workspace }}-CHANGELOG.txt
32
overwrite_files: true
33
+ token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
0 commit comments