Skip to content

Commit

Permalink
Fix package script
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed Oct 7, 2019
1 parent 10d37a2 commit 06a22f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,13 @@ jobs:
- name: Package
shell: bash
run: |
name=cargo_deny
name=cargo-deny
tag=$(git describe --tags --abbrev=0)
release_name="$name-$tag-${{ matrix.target }}"
mkdir "$release_name"
if [ "${{ matrix.target }}" != "x86_64-pc-windows-msvc" ]; then
strip "target/${{ matrix.target }}/release/$name"
strip "target/${{ matrix.target }}/release/$bin"
fi
cp "target/${{ matrix.target }}/release/${{ matrix.bin }}" "$release_name/"
Expand Down

0 comments on commit 06a22f9

Please sign in to comment.