Fix: Убрал архивацию перед тем как залить артефакт
This commit is contained in:
@@ -62,24 +62,21 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
chmod +x ${{ gitea.workspace }}/compile.sh
|
chmod +x ${{ gitea.workspace }}/compile.sh
|
||||||
sh ${{ gitea.workspace }}/compile.sh
|
sh ${{ gitea.workspace }}/compile.sh
|
||||||
zip -r release-linux.zip OUTPUT-Linux || true
|
|
||||||
zip -r release-w64.zip OUTPUT-w64 || true
|
|
||||||
zip -r release-w32.zip OUTPUT-w32 || true
|
|
||||||
|
|
||||||
- name: Upload Linux Release
|
- name: Upload Linux Release
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: release-linux
|
name: OUTPUT-Linux
|
||||||
path: release-linux.zip
|
path: release-linux.zip
|
||||||
|
|
||||||
- name: Upload Windows64 Release
|
- name: Upload Windows64 Release
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: release-w64
|
name: OUTPUT-w64
|
||||||
path: release-w64.zip
|
path: release-w64.zip
|
||||||
|
|
||||||
- name: Upload Windows32 Release
|
- name: Upload Windows32 Release
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: release-w32
|
name: OUTPUT-w32
|
||||||
path: release-w32.zip
|
path: release-w32.zip
|
||||||
|
|||||||
Reference in New Issue
Block a user