Skip to content

Commit

Permalink
Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
Metaphorme committed Nov 8, 2024
1 parent 84d05b2 commit e10d1ae
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,20 @@ jobs:
- name: Build
run: cargo build --release --no-default-features --features ${{ matrix.backend }} --target ${{ matrix.config.target }}

- name: Crate directory to upload
- if: matrix.config.os == 'windows-latest'
run: |
mkdir upload
cp target/${{matrix.config.target}}/release/ezcheck* upload/
cp target/${{matrix.config.target}}/release/ezcheck.exe upload/
- if: matrix.config.os != 'windows-latest'
run: |
mkdir upload
cp target/${{matrix.config.target}}/release/ezcheck upload/
- name: Add license and Gerenate sha256
run: |
cp LICENSE upload/
cd upload
rm ezcheck.d
rm ezcheck.pdb
sha256sum * > sha256sum.txt
- name: Upload Artifacts
Expand Down

0 comments on commit e10d1ae

Please sign in to comment.