Skip to content

Commit 5c6c005

Browse files
committed
$GITHUB_WORKSPACE does not work in path
1 parent f3588d0 commit 5c6c005

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
- name: upload artifacts
121121
uses: actions/upload-artifact@v2
122122
with:
123-
name: ${{matrix.os}}_{{matrix.arch}}
123+
name: ${{matrix.os}}_${{matrix.arch}}
124124
path: |
125-
$GITHUB_WORKSPACE/pico-sdk/tools/elf2uf2/build/elf2uf2${{ matrix.extension }}
126-
$GITHUB_WORKSPACE/picotool/build/picotool${{ matrix.extension }}
125+
${{ github.workspace }}/pico-sdk/tools/elf2uf2/build/elf2uf2${{ matrix.extension }}
126+
${{ github.workspace }}/picotool/build/picotool${{ matrix.extension }}

0 commit comments

Comments
 (0)