fix release

This commit is contained in:
simplxs 2024-07-02 16:47:13 +08:00
parent 7ef0c670f4
commit d71c73b6c6
No known key found for this signature in database
GPG Key ID: 1A3833A46D84A08C

View File

@ -23,8 +23,12 @@ jobs:
- name: Download All Artifact - name: Download All Artifact
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
with:
path: artifacts - name: Zip Artifact
run: |
zip -r SignerServer-windows-x64.zip SignerServer-windows-latest-x64.zip
zip -r SignerServer-ubuntu-x64.zip SignerServer-ubuntu-latest-x64.zip
zip -r SignerServer-ubuntu-arm64.zip SignerServer-ubuntu-latest-arm64.zip
- name: Create Release Draft and Upload Artifacts - name: Create Release Draft and Upload Artifacts
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2
@ -32,4 +36,6 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
body_path: CHANGELOG.md body_path: CHANGELOG.md
files: | files: |
artifacts/*/* SignerServer-windows-x64.zip
SignerServer-ubuntu-x64.zip
SignerServer-ubuntu-arm64.zip