We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46a7019 commit 1b6fb2fCopy full SHA for 1b6fb2f
1 file changed
.github/workflows/onPushToMain.yml
@@ -9,8 +9,8 @@ jobs:
9
release:
10
runs-on: ubuntu-latest
11
permissions:
12
- contents: read
13
id-token: write
+ contents: write
14
steps:
15
- uses: actions/checkout@v6
16
with:
@@ -59,11 +59,11 @@ jobs:
59
git push -u origin ${{ github.ref_name }}
60
fi
61
- name: Create Github Release
62
- uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5
+ uses: ncipollo/release-action@v1
63
if: ${{ steps.version-check.outputs.skipped == 'false' }}
64
65
name: ${{ steps.version-check.outputs.tag }}
66
tag: ${{ steps.version-check.outputs.tag }}
67
commit: ${{ github.ref_name }}
68
- token: ${{ secrets.GH_TOKEN }}
+ token: ${{ secrets.GITHUB_TOKEN }}
69
skipIfReleaseExists: true
0 commit comments