merged all workflows into a single file
This commit is contained in:
parent
7235464660
commit
0e8ebb1d7f
2 changed files with 39 additions and 46 deletions
|
@ -1,10 +1,5 @@
|
|||
name: Build Documentation
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
pull_request:
|
||||
|
||||
name: Actions
|
||||
on: [push]
|
||||
jobs:
|
||||
Build Documentation:
|
||||
runs-on: docker
|
||||
|
@ -49,3 +44,40 @@ jobs:
|
|||
echo "${GREEN}https://$CI_ACTION_REF_NAME_SLUG.docs.galacticfactory.cc/"
|
||||
env:
|
||||
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/
|
|
@ -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/
|
Reference in a new issue