Skip to content

Commit 2d31c01

Browse files
committed
Add prefix 'wheels-' to wheels git tag
1 parent 1105c25 commit 2d31c01

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/wheel-publisher.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
workflow_dispatch:
1313
inputs:
1414
release-tag:
15-
description: "Version of the release to publish"
15+
description: "Version of the release to publish (major.minor.patch[-rev])"
1616
required: True
1717
default: 0.0.1
1818
type: string
@@ -43,7 +43,7 @@ jobs:
4343
run: |
4444
# Warning: Target release must not be in 'draft' status,
4545
# otherwise gh release won't find it
46-
gh release download v${{ inputs.release-tag}} -D tmp -R LuxCoreRender/LuxCore
46+
gh release download wheels-v${{ inputs.release-tag}} -D tmp -R LuxCoreRender/LuxCore
4747
mkdir dist
4848
for d in tmp/*.zip ; do
4949
echo "unzip ${d}"

.github/workflows/wheel-releaser.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
uses: ncipollo/release-action@cdcc88a9acf3ca41c16c37bb7d21b9ad48560d87
9999
with:
100100
name: "LuxCore Wheels ${{ env.RELEASE_TAG }}"
101-
tag: ${{ env.RELEASE_TAG }}
101+
tag: wheels-${{ env.RELEASE_TAG }}
102102
artifacts: artifacts/*
103103
removeArtifacts: true
104104
allowUpdates: ${{ inputs.allow-updates }}
@@ -119,4 +119,3 @@ jobs:
119119
- run: |
120120
echo "### Release""" >> $GITHUB_STEP_SUMMARY
121121
echo ${{ steps.make-release.outputs.html_url }} >> $GITHUB_STEP_SUMMARY
122-

0 commit comments

Comments
 (0)