merged the export build jobs into a single build job
Some checks failed
Actions / Build Documentation (push) Successful in 15s
Actions / Build Export Files (push) Failing after 4s

This commit is contained in:
SeaswimmerTheFsh 2024-02-13 18:17:34 +00:00
parent ff092f04fd
commit 98fe4e894b
Signed by: cswimr
GPG key ID: AB39CBC5A4135AB8

View file

@ -45,7 +45,7 @@ jobs:
env:
GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }}
Build Prism Launcher Export File:
Build Export Files:
runs-on: docker
container: catthehacker/ubuntu:act-latest
steps:
@ -54,30 +54,22 @@ jobs:
- name: Copy export files
run: |
mkdir -vp /export/.minecraft
cp -vrT ./build/prism /export
cp -v ./unsup.ini /export/.minecraft/
cp -vrT ./build/atlauncher ~/export/atlauncher
cp -vp ./unsup.ini ~/export/atlauncher/.minecraft/
- name: Upload export artifact
uses: actions/upload-artifact@v3
with:
name: PrismLauncher
path: /export/
mkdir -vp ~/export/prism/.minecraft
cp -vrT ./build/prism ~/export/prism
cp -v ./unsup.ini ~/export/prism/.minecraft/
Build ATLauncher Export File:
runs-on: docker
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Copy export files
run: |
cp -vrT ./build/atlauncher /export
cp -vp ./unsup.ini /export/.minecraft/
- name: Upload export artifact
- name: Upload ATLauncher export artifact
uses: actions/upload-artifact@v3
with:
name: ATLauncher
path: /export/
path: /export/atlauncher/
continue-on-error: true
- name: Upload Prism Launcher export artifact
uses: actions/upload-artifact@v3
with:
name: PrismLauncher
path: /export/prism/