mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-17 17:05:09 +00:00
2898a762d4
Requirements: - there exists a tag named `latest-dev` already - there exists a release on that tag
65 lines
1.7 KiB
YAML
65 lines
1.7 KiB
YAML
name: Build artifacts
|
|
|
|
|
|
inputs:
|
|
tag:
|
|
description : 'version tag'
|
|
required : false
|
|
default : ''
|
|
prefix:
|
|
description : 'filename prefix'
|
|
required : false
|
|
default : ''
|
|
|
|
|
|
outputs:
|
|
filename:
|
|
description : 'Filename for the build artifacts'
|
|
value : ${{ steps.env.outputs.filename }}
|
|
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
-
|
|
name : Environment
|
|
id : env
|
|
shell : bash
|
|
run: |
|
|
VERS=${{ inputs.tag }}
|
|
echo "::set-output name=version::${VERS:1}"
|
|
echo "::set-output name=filename::${{ inputs.prefix }}SMO_Online${{ (inputs.tag != '' && format('_{0}', inputs.tag)) || '' }}"
|
|
-
|
|
name : Set up Docker Buildx
|
|
uses : docker/setup-buildx-action@v2
|
|
-
|
|
name : Build environment
|
|
uses : docker/build-push-action@v3
|
|
with:
|
|
pull : true
|
|
push : false
|
|
load : true
|
|
context : .
|
|
file : ./Dockerfile
|
|
tags : smoo-build-env
|
|
platforms : linux/amd64
|
|
cache-from : type=gha,scope=smoo-build-env
|
|
cache-to : type=gha,scope=smoo-build-env,mode=max
|
|
-
|
|
name : Build mod
|
|
shell : bash
|
|
run: |
|
|
docker run --rm \
|
|
-u `id -u`:`id -g` \
|
|
-v "/$PWD/":/app/ \
|
|
${{ (steps.env.outputs.version != '' && format('-e BUILDVER={0}', steps.env.outputs.version)) || '' }} \
|
|
smoo-build-env \
|
|
;
|
|
cp -r ./romfs/ ./starlight_patch_100/atmosphere/contents/0100000000010000/.
|
|
-
|
|
name : Upload artifacts
|
|
uses : actions/upload-artifact@v3
|
|
with:
|
|
name : ${{ steps.env.outputs.filename }}
|
|
path : ./starlight_patch_100/
|
|
if-no-files-found : error
|