This commit is contained in:
Stephan 2021-12-10 19:32:14 +01:00
parent 543d33a363
commit 26f94b13a3

View File

@ -8,7 +8,16 @@ jobs:
- name: Validate the release - name: Validate the release
uses: actions/github-script@v4 uses: actions/github-script@v4
with: with:
github-token: ${{secrets.GITHUB_TOKEN}} # needed to see draft releases
# fuck! not seeing the draft release
# curl -i -u zpqrtbnk https://api.github.com/users/zpqrtbnk
# with my test-repo-curl token
# raises the x-ratelimit-limit to 5000/hr ok
# and, I can see the draft release
# so, I need a special token?
#github-token: ${{ secrets.GITHUB_TOKEN }} # needed to see draft releases
github-token: ${{ secrets.MY_GITHUB_TOKEN_TESTREPO }}
script: | script: |
const ver = "${{ github.ref }}".substring(19) const ver = "${{ github.ref }}".substring(19)
const tag = "v" + ver const tag = "v" + ver