1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-07 21:58:06 -05:00

fix artifact zip path

This commit is contained in:
RaidMax 2024-06-30 20:46:23 -05:00
parent 71136bf3b4
commit e168bbf055

View File

@ -223,10 +223,12 @@ jobs:
uses: actions/download-artifact@v4
with:
name: IW4MAdmin-${{ env.buildNumber }}-${{ env.releaseType }}
path: ${{ github.workspace }}
path: ${{ github.workspace }}/artifact
- name: Zip build
run: zip -r IW4MAdmin-${{ env.buildNumber }}.zip ${{ github.workspace }}/*
run: |
cd ${{ github.workspace }}/artifact
zip -r IW4MAdmin-${{ env.buildNumber }}.zip .
- name: Make release
uses: ncipollo/release-action@v1