We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bd17bb commit 95a1c24Copy full SHA for 95a1c24
.github/workflows/build.yml
@@ -57,9 +57,14 @@ jobs:
57
cargo test
58
fi
59
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
+
65
- name: Upload Artifact
66
if: startsWith(github.ref, 'refs/tags/')
- uses: actions/upload-artifact@v3
67
+ uses: actions/upload-artifact@v4
68
with:
69
name: ${{ matrix.os }}-${{ matrix.features }}
- path: target/release/ltengine*
70
+ path: target/release/${{ matrix.os }}-${{ matrix.features }}.zip
0 commit comments