do not zip up files (they will get zipped twice)
This commit is contained in:
parent
a16d2ce223
commit
c6d1f562f4
1 changed files with 4 additions and 6 deletions
|
@ -8,18 +8,17 @@ jobs:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: ZIP export files
|
- name: Copy export files
|
||||||
run: |
|
run: |
|
||||||
mkdir -p /export
|
mkdir -p /export
|
||||||
cp -r ./instance/prism /export
|
cp -r ./instance/prism /export
|
||||||
cp ./unsup.ini /export/.minecraft
|
cp ./unsup.ini /export/.minecraft
|
||||||
zip -r export.zip /export
|
|
||||||
|
|
||||||
- name: Upload export file
|
- name: Upload export file
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: Prism Launcher
|
name: Prism Launcher
|
||||||
path: export.zip
|
path: /export
|
||||||
|
|
||||||
Build ATLauncher Export:
|
Build ATLauncher Export:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
|
@ -28,15 +27,14 @@ jobs:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: ZIP export files
|
- name: Copy export files
|
||||||
run: |
|
run: |
|
||||||
mkdir -p /export
|
mkdir -p /export
|
||||||
cp -r ./instance/atlauncher export
|
cp -r ./instance/atlauncher export
|
||||||
cp ./unsup.ini /export/.minecraft
|
cp ./unsup.ini /export/.minecraft
|
||||||
zip -r export.zip /export
|
|
||||||
|
|
||||||
- name: Upload export file
|
- name: Upload export file
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: ATLauncher
|
name: ATLauncher
|
||||||
path: export.zip
|
path: /export
|
||||||
|
|
Reference in a new issue