38 lines
1,010 B
YAML
38 lines
1,010 B
YAML
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: |
|
|
cp -rT ./instance/prism /export
|
|
cp -p ./unsup.ini /export/.minecraft/
|
|
|
|
- name: Upload export file
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: Prism Launcher
|
|
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 ./instance/atlauncher /export
|
|
cp -p ./unsup.ini /export/.minecraft/
|
|
|
|
- name: Upload export file
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: ATLauncher
|
|
path: /export/
|