-
Hi, I want to use gorelease with https://github.com/marketplace/actions/release-please-action. So I would like to upload the assets to the release created by the other tool Something like this release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v4
with:
release-type: go
bump-minor-pre-major: true
bump-patch-for-minor-pre-major: true
- name: Upload Release Artifact
if: ${{ steps.release.outputs.release_created }}
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release # something here to upload only
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG: ${{ steps.release.outputs.tag_name }} Is this possible somehow? |
Beta Was this translation helpful? Give feedback.
Answered by
caarlos0
Jan 9, 2024
Replies: 1 comment
-
yes, just need to set |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
caarlos0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
yes, just need to set
release.mode = 'keep-existing'
in your goreleaser configurationhttps://goreleaser.com/customization/release/