Skip to content

Commit 8fddb84

Browse files
committed
Use runner context instead of env
1 parent 4563136 commit 8fddb84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
2424
- uses: actions/upload-artifact@v4
2525
with:
26-
name: blender-extension-${{ env.RUNNER_OS }}_${{ env.RUNNER_ARCH }}-${{ github.ref_name }}
26+
name: blender-extension-${{ runner.os }}_${{ runner.arch }}-${{ github.ref_name }}
2727
path: ./blender/extension
2828

2929
- name: Release
3030
uses: softprops/action-gh-release@v1
3131
if: startsWith(github.ref, 'refs/tags/')
3232
with:
3333
files: |
34-
blender-extension-${{ env.RUNNER_OS }}_${{ env.RUNNER_ARCH }}-${{ github.ref_name }}
34+
blender-extension-${{ runner.os }}_${{ runner.arch }}-${{ github.ref_name }}
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)