Skip to content

Commit

Permalink
Update PackageReleaseOnMerge.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
GuicLuca committed Oct 19, 2023
1 parent bc3195f commit cea90a0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/PackageReleaseOnMerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,15 @@ jobs:
- name: Build for ${{ matrix.os }}
run: cargo build --release
working-directory: ${{ matrix.workdir }}

- name: Debug
run: ls target/release/

- name: Create Zip File
run: zip -r ${{ matrix.workdir }}_${{ matrix.os }}.zip target/release/*
run: zip -r ${{ matrix.workdir }}_${{ matrix.os }}_${{ matrix.toolchain }}.zip target/release/*

- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.workdir }}_${{ matrix.os }}
path: ${{ matrix.workdir }}_${{ matrix.os }}.zip
name: ${{ matrix.workdir }}_${{ matrix.os }}_${{ matrix.toolchain }}
path: ${{ matrix.workdir }}_${{ matrix.os }}_${{ matrix.toolchain }}.zip

0 comments on commit cea90a0

Please sign in to comment.