AzureUndeadModpack/.forgejo/workflows/build.yaml
SeaswimmerTheFsh 81e24b90c4
All checks were successful
Autotagger / Autotagger (push) Successful in 6s
Build / Export Files (push) Successful in 6s
removed documentation build step
2024-03-21 14:52:03 -04:00

37 lines
954 B
YAML

name: Build
on:
push:
branches:
- 'main'
pull_request:
jobs:
Export Files:
runs-on: docker
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Copy export files
run: |
mkdir -vp /export/atlauncher/.minecraft
cp -vrT ./build/atlauncher /export/atlauncher
cp -vp ./unsup.ini /export/atlauncher/.minecraft/
mkdir -vp /export/prism/.minecraft
cp -vrT ./build/prism /export/prism
cp -v ./unsup.ini /export/prism/.minecraft/
- name: Upload ATLauncher export artifact
uses: actions/upload-artifact@v3
with:
name: ATLauncher
path: /export/atlauncher/
continue-on-error: true
- name: Upload Prism Launcher export artifact
uses: actions/upload-artifact@v3
with:
name: PrismLauncher
path: /export/prism/