41 lines
1 KiB
YAML
41 lines
1 KiB
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: ZIP export files
|
||
|
run: |
|
||
|
mkdir -p /export
|
||
|
cp -r ./instance/prism export
|
||
|
zip -r export.zip /export
|
||
|
|
||
|
- name: Upload export file
|
||
|
uses: actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: Prism Launcher.zip
|
||
|
path: /export/export.zip
|
||
|
|
||
|
Build ATLauncher Export:
|
||
|
runs-on: docker
|
||
|
container: catthehacker/ubuntu:act-latest
|
||
|
steps:
|
||
|
- name: Checkout Repository
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: ZIP export files
|
||
|
run: |
|
||
|
mkdir -p /export
|
||
|
cp -r ./instance/atlauncher export
|
||
|
zip -r export.zip /export
|
||
|
|
||
|
- name: Upload export file
|
||
|
uses: actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: ATLauncher.zip
|
||
|
path: /export/export.zip
|