We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7abd905 commit c086176Copy full SHA for c086176
.github/workflows/build-image.yaml
@@ -170,13 +170,13 @@ jobs:
170
build-rust-static-bin ${{ matrix.target }}
171
172
# Translate ${{ matrix.target }} to rust target triple
173
- echo "::set-env name=TARGET_TRIPPLE::$(bash translate-arch-to-rust-tripple.sh)"
+ echo "::set-output name=TARGET_TRIPPLE::$(bash translate-arch-to-rust-tripple.sh)"
174
175
- name: Upload static application binaries
176
uses: actions/upload-artifact@v3
177
with:
178
name: ${{ matrix.target }}
179
- path: target/${{ env.TARGET_TRIPPLE }}/release/this-week-in-past
+ path: target/${{ steps.build-binaries.outputs.TARGET_TRIPPLE }}/release/this-week-in-past
180
181
182
test-container-image:
0 commit comments