Skip to content

Commit c086176

Browse files
committed
fix(pipe): use correct env name for next step
1 parent 7abd905 commit c086176

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-image.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,13 +170,13 @@ jobs:
170170
build-rust-static-bin ${{ matrix.target }}
171171
172172
# Translate ${{ matrix.target }} to rust target triple
173-
echo "::set-env name=TARGET_TRIPPLE::$(bash translate-arch-to-rust-tripple.sh)"
173+
echo "::set-output name=TARGET_TRIPPLE::$(bash translate-arch-to-rust-tripple.sh)"
174174
175175
- name: Upload static application binaries
176176
uses: actions/upload-artifact@v3
177177
with:
178178
name: ${{ matrix.target }}
179-
path: target/${{ env.TARGET_TRIPPLE }}/release/this-week-in-past
179+
path: target/${{ steps.build-binaries.outputs.TARGET_TRIPPLE }}/release/this-week-in-past
180180

181181

182182
test-container-image:

0 commit comments

Comments
 (0)