Skip to content

Commit 70278a8

Browse files
committed
rename wheel artifact name
1 parent eb685fa commit 70278a8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ on:
3636
run_id:
3737
description: 'Run id the workflow where to find installation (or undefined if build is not successful)'
3838
value: ${{ jobs.build-conclusion.outputs.run_id }}
39-
wheel-name:
40-
description: "The name of the built wheel"
41-
value: ${{ jobs.forge-build.outputs.wheel-name }}
39+
wheel-artifact-name:
40+
description: "The name of the built wheel's artifact"
41+
value: ${{ jobs.forge-build.outputs.wheel-artifact-name }}
4242

4343
permissions:
4444
packages: write
@@ -63,9 +63,9 @@ jobs:
6363
image: ${{ inputs.docker-image }}
6464

6565
env:
66-
WHEEL_NAME: "forge-wheel"
66+
WHEEL_ARTIFACT_NAME: "forge-wheel"
6767
outputs:
68-
wheel-name: ${{ steps.set-wheel-name.outputs.wheel-name }}
68+
wheel-artifact-name: ${{ steps.set-wheel-name.outputs.wheel-artifact-name }}
6969

7070
steps:
7171

@@ -137,13 +137,13 @@ jobs:
137137
id: set-wheel-name
138138
shell: bash
139139
run: |
140-
echo "wheel-name=$WHEEL_NAME" >> "$GITHUB_OUTPUT"
140+
echo "wheel-artifact-name=$WHEEL_ARTIFACT_NAME" >> "$GITHUB_OUTPUT"
141141
142142
- name: Upload Build
143143
uses: actions/upload-artifact@v4
144144
if: success() || failure()
145145
with:
146-
name: ${{ env.WHEEL_NAME }}
146+
name: ${{ env.WHEEL_ARTIFACT_NAME }}
147147
path: dist/*.whl
148148

149149

.github/workflows/on-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
# todo(vvukoman): before merging switch to @main
171171
uses: tenstorrent/tt-forge/.github/actions/tag-and-release@vvukoman/tag-and-release-action
172172
with:
173-
wheel-name: ${{ needs.build.outputs.wheel-name }}
173+
wheel-artifact-name: ${{ needs.build.outputs.wheel-artifact-name }}
174174
env:
175175
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
176176

0 commit comments

Comments
 (0)