File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,14 @@ jobs:
32
32
targets : ${{ inputs.target }}
33
33
34
34
- 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
36
38
37
39
- 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"
39
43
40
44
- name : Upload Artifact
41
45
if : inputs.upload
Original file line number Diff line number Diff line change 29
29
path : artifacts
30
30
31
31
- name : Upload Release Binary
32
- uses : softprops/action-gh-release@7b4da11513bf3f43f9999e90eabced41ab8bb048 # v2.2.0
32
+ uses : softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1
33
33
with :
34
34
files : artifacts/artifact/*
You can’t perform that action at this time.
0 commit comments