merged all workflows into a single file
All checks were successful
Actions / Build Documentation (push) Successful in 10s
Actions / Build Prism Launcher Export File (push) Successful in 4s
Actions / Build ATLauncher Export File (push) Successful in 4s

This commit is contained in:
SeaswimmerTheFsh 2024-02-08 19:20:37 -05:00
parent 7235464660
commit 0e8ebb1d7f
Signed by: cswimr
GPG key ID: B8953EC01E5C4063
2 changed files with 39 additions and 46 deletions

View file

@ -1,10 +1,5 @@
name: Build Documentation name: Actions
on: on: [push]
push:
branches:
- 'master'
pull_request:
jobs: jobs:
Build Documentation: Build Documentation:
runs-on: docker runs-on: docker
@ -49,3 +44,40 @@ jobs:
echo "${GREEN}https://$CI_ACTION_REF_NAME_SLUG.docs.galacticfactory.cc/" echo "${GREEN}https://$CI_ACTION_REF_NAME_SLUG.docs.galacticfactory.cc/"
env: env:
GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }} GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }}
Build Prism Launcher Export File:
runs-on: docker
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Copy export files
run: |
mkdir -p /export/.minecraft
cp -rT ./build/prism /export
cp ./unsup.ini /export/.minecraft/
- name: Upload export file
uses: actions/upload-artifact@v3
with:
name: PrismLauncher
path: /export/
Build ATLauncher Export File:
runs-on: docker
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Copy export files
run: |
cp -rT ./build/atlauncher /export
cp -p ./unsup.ini /export/.minecraft/
- name: Upload export file
uses: actions/upload-artifact@v3
with:
name: ATLauncher
path: /export/

View file

@ -1,39 +0,0 @@
name: Build Exported Instance Files
on: [push]
jobs:
Build Prism Launcher Export:
runs-on: docker
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Copy export files
run: |
mkdir -p /export/.minecraft
cp -rT ./build/prism /export
cp ./unsup.ini /export/.minecraft/
- name: Upload export file
uses: actions/upload-artifact@v3
with:
name: PrismLauncher
path: /export/
Build ATLauncher Export:
runs-on: docker
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Copy export files
run: |
cp -rT ./build/atlauncher /export
cp -p ./unsup.ini /export/.minecraft/
- name: Upload export file
uses: actions/upload-artifact@v3
with:
name: ATLauncher
path: /export/