softprops / action-gh-release

📦 :octocat: GitHub Action for creating GitHub Releases
MIT License
3.91k stars 440 forks source link

GitHub release failed with status: 403 #396

Closed hannesa2 closed 8 months ago

hannesa2 commented 8 months ago

In a private repo, with this

  - name: Create Release
    uses: softprops/action-gh-release@v1
    with:
      tag_name: ${{steps.tagger.outputs.tag}}
      prerelease: ${{ env.PRE_RELEASE }}
      name: ${{steps.tagger.outputs.tag}}
      generate_release_notes: true
      files: |
        ./app/build/outputs/apk/release/app-release.apk
    env:
      GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

I run into

image

Does someone has a hint how to solve this ?

russellbanks commented 8 months ago

https://github.com/softprops/action-gh-release/issues/236#issuecomment-1150530128

hannesa2 commented 8 months ago

Thanks for the advice, it works now

image