Skip to content

Commit 7e2c871

Browse files
committed
biild: allow publishing of backports
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 748e4f1 commit 7e2c871

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
runs-on: ubuntu-latest
8787
timeout-minutes: 30
8888
env:
89-
PACKAGE_RELEASE_TAG: ${{ github.event.inputs.prerelease == 'true' && 'unstable-prerelease' || 'latest' }}
89+
PACKAGE_RELEASE_TAG: ${{ github.event.inputs.prerelease == 'true' && 'unstable-prerelease' || 'backport' }}
9090
steps:
9191
- name: Checkout code
9292
# see https://github.com/actions/checkout
@@ -166,7 +166,8 @@ jobs:
166166
env:
167167
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
168168
with:
169-
tag_name: ${{ needs.bump.outputs.version }}
170-
name: ${{ needs.bump.outputs.version_plain }}
171-
prerelease: ${{ github.event.inputs.prerelease }}
172-
files: ${{ env.ASSETS_DIR }}/*
169+
make_latest: false
170+
tag_name: ${{ needs.bump.outputs.version }}
171+
name: ${{ needs.bump.outputs.version_plain }}
172+
prerelease: ${{ github.event.inputs.prerelease }}
173+
files: ${{ env.ASSETS_DIR }}/*

0 commit comments

Comments
 (0)