Skip to content

Commit 95a1c24

Browse files
committed
Fix yml
1 parent 6bd17bb commit 95a1c24

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,14 @@ jobs:
5757
cargo test
5858
fi
5959
60+
- name: Create Zip Archive
61+
if: startsWith(github.ref, 'refs/tags/')
62+
run: |
63+
zip -j target/release/${{ matrix.os }}-${{ matrix.features }}.zip target/release/ltengine*
64+
6065
- name: Upload Artifact
6166
if: startsWith(github.ref, 'refs/tags/')
62-
uses: actions/upload-artifact@v3
67+
uses: actions/upload-artifact@v4
6368
with:
6469
name: ${{ matrix.os }}-${{ matrix.features }}
65-
path: target/release/ltengine*
70+
path: target/release/${{ matrix.os }}-${{ matrix.features }}.zip

0 commit comments

Comments
 (0)