Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
V0ldek authored Mar 29, 2023
1 parent 09f581a commit 112ad1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,10 @@ jobs:
RUSTFLAGS: "-C target-feature=${{ matrix.target-features }} --deny warnings"
- name: Rename binary (Unix)
if: matrix.os != 'windows-latest'
run: mv "target/release/${{ matrix.triple }}/rsonpath" target/release/rsonpath-${{ matrix.triple }}-${{ matrix.artifact-suffix }}
run: mv "target/${{ matrix.triple }}/release/rsonpath" target/release/rsonpath-${{ matrix.triple }}-${{ matrix.artifact-suffix }}
- name: Rename binary (Windows)
if: matrix.os == 'windows-latest'
run: mv -Force "target/release/${{ matrix.triple }}/rsonpath.exe" target/release/rsonpath-${{ matrix.triple }}-${{ matrix.artifact-suffix }}.exe
run: mv -Force "target/${{ matrix.triple }}/release/rsonpath.exe" target/release/rsonpath-${{ matrix.triple }}-${{ matrix.artifact-suffix }}.exe
- name: Upload the binary as artifact
uses: actions/upload-artifact@v3.1.2
with:
Expand Down

0 comments on commit 112ad1d

Please sign in to comment.