File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,14 @@ jobs:
3232 targets : ${{ inputs.target }}
3333
3434 - name : Build Binary
35- run : cargo build --target ${{ inputs.target }} --release --package interu
35+ env :
36+ TARGET : ${{ inputs.target }}
37+ run : cargo build --target "$TARGET" --release --package interu
3638
3739 - name : Rename Binary
38- run : mv target/${{ inputs.target }}/release/interu interu-${{ inputs.target }}
40+ env :
41+ TARGET : ${{ inputs.target }}
42+ run : mv "target/$TARGET/release/interu" "interu-$TARGET"
3943
4044 - name : Upload Artifact
4145 if : inputs.upload
Original file line number Diff line number Diff line change 2929 path : artifacts
3030
3131 - name : Upload Release Binary
32- uses : softprops/action-gh-release@7b4da11513bf3f43f9999e90eabced41ab8bb048 # v2.2.0
32+ uses : softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1
3333 with :
3434 files : artifacts/artifact/*
You can’t perform that action at this time.
0 commit comments