Skip to content

Commit

Permalink
Fix packaging task
Browse files Browse the repository at this point in the history
  • Loading branch information
foresterre committed Oct 28, 2021
1 parent 7227cf4 commit cf0226e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-release-binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,16 @@ jobs:
- name: pack_archive_macos
if: matrix.os == 'macos-latest'
shell: bash
run: gtar -C ./target/${{ matrix.target }}/release --create --file=${{ steps.create-archive-name.outputs.archive }} cargo-msrv third-party-licenses.html LICENSE-APACHE LICENSE-MIT README.md
run: |
cp ./target/${{ matrix.target }}/release/cargo-msrv cargo-msrv
gtar -C --create --file=${{ steps.create-archive-name.outputs.archive }} cargo-msrv third-party-licenses.html LICENSE-APACHE LICENSE-MIT README.md
- name: pack_archive_linux
if: matrix.os == 'ubuntu-latest'
shell: bash
run: tar -C ./target/${{ matrix.target }}/release --create --file=${{ steps.create-archive-name.outputs.archive }} cargo-msrv third-party-licenses.html LICENSE-APACHE LICENSE-MIT README.md
run: |
cp target/${{ matrix.target }}/release/cargo-msrv cargo-msrv
tar --create --file=${{ steps.create-archive-name.outputs.archive }} cargo-msrv third-party-licenses.html LICENSE-APACHE LICENSE-MIT README.md
- name: pack_archive_windows
if: matrix.os == 'windows-latest'
Expand Down

0 comments on commit cf0226e

Please sign in to comment.