We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Goreleaser will fail to create a Github release for a given Git tag, if the release already exist.
This currently happens on a monthly schedule (Workflow definition), although it shouldn't:
await github.rest.actions.createWorkflowDispatch({ owner: context.repo.owner, repo: context.repo.repo, workflow_id: 'release.yml', ref: releaseTag, inputs: { goreleaser: 'false', releaseType: 'release', } }) console.log(`triggered release for ${releaseTag} (${releaseRef})`)
goreleaser: 'false' should inhibit creating Github releases.
goreleaser: 'false'
The latest Workflow log contains:
triggered release for v0.4.1 (fa1c31bae6ead1c665b5534fc05eb52768c74920)
The text was updated successfully, but these errors were encountered:
31dcada
That wasn't it...
Sorry, something went wrong.
It seems like github.rest.repos.getLatestRelease only looks at GitHub releases, not the Git tags 🤔
github.rest.repos.getLatestRelease
releng: refactor scheduled rebuilds
673d014
Another stab at #27.
No branches or pull requests
Goreleaser will fail to create a Github release for a given Git tag, if the release already exist.
This currently happens on a monthly schedule (Workflow definition), although it shouldn't:
goreleaser: 'false'
should inhibit creating Github releases.The latest Workflow log contains:
The text was updated successfully, but these errors were encountered: