Skip to content

Commit 11dd70c

Browse files
authored
ci: Bump broken action (#33)
1 parent ba9ee58 commit 11dd70c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/build_interu.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/release_interu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
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/*

0 commit comments

Comments
 (0)