Skip to content

Commit

Permalink
fix(pipe): use correct env name for next step
Browse files Browse the repository at this point in the history
  • Loading branch information
RouHim committed Jan 6, 2023
1 parent 7abd905 commit c086176
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,13 +170,13 @@ jobs:
build-rust-static-bin ${{ matrix.target }}
# Translate ${{ matrix.target }} to rust target triple
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)"
- name: Upload static application binaries
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.target }}
path: target/${{ env.TARGET_TRIPPLE }}/release/this-week-in-past
path: target/${{ steps.build-binaries.outputs.TARGET_TRIPPLE }}/release/this-week-in-past


test-container-image:
Expand Down

0 comments on commit c086176

Please sign in to comment.