Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,13 @@ jobs:
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
make_latest: true
# A prerelease must not become the repository's latest release, and
# must be flagged as one. v0.1.6-rc.1..rc.5 were all published with
# make_latest: true, so an RC has been presented as the latest release
# since. contains() on the tag is the check: v1.2.3 is a release,
# v1.2.3-rc.1 is not.
prerelease: ${{ contains(github.ref_name, '-') }}
make_latest: ${{ !contains(github.ref_name, '-') }}
files: |
/tmp/nudgebee-node-agent-${{ steps.meta.outputs.version }}-amd64
/tmp/nudgebee-node-agent-${{ steps.meta.outputs.version }}-arm64
Loading