action-gh-release
action-gh-release copied to clipboard
GitHub release failed with status: 404 undefined
See the build log. No workflow changes since last release v0.13.0:
- name: Publish on Github Releases
uses: softprops/action-gh-release@v1
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') && matrix.coverage
env:
GITHUB_TOKEN: ${{ secrets.RELEASES_DEPLOY_KEY }}
with:
files: |
dist/*
build/sphinx/latex/Diofant-*.pdf
draft: true
prerelease: true
name: "Diofant ${{ steps.release.outputs.version }}"
body: "See [release notes](https://diofant.readthedocs.io/\
en/latest/release/notes-${{ steps.release.outputs.short_version }}.html)."
Same for the currect git version (fe9a9bd3).
Have you checked is not related with the permissions of the workflow? https://github.com/softprops/action-gh-release#permissions
I hope so, there are remnants of such check in the workflow file.
Hmm, that was related with the selected scopes of the used personal token. I'll leave this open, perhaps that should be documented.
Did somebody got the solution for this. I have stumbled upon exactly the same error.