Fix for softlocks when initializing/exiting the application and minor issues with backup/restore #474
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-Release | |
on: [ push, pull_request ] | |
jobs: | |
build-binary: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Docker Layer Caching | |
uses: jpribyl/action-docker-layer-caching@v0.1.1 | |
continue-on-error: true | |
with: | |
key: savemii-docker-cache-{hash} | |
restore-keys: | | |
savemii-docker-cache- | |
- name: Build artifacts | |
run: | | |
docker build . --file Dockerfile --tag builder | |
docker run --rm -v ${PWD}:/project builder make release -j$(nproc) | |
- name: Upload Aroma version | |
uses: actions/upload-artifact@v3 | |
with: | |
name: SaveMiiModWUTPort-Aroma | |
path: SaveMiiModWUTPort-Aroma.zip | |
if-no-files-found: warn | |
- name: Upload HBL version | |
uses: actions/upload-artifact@v3 | |
with: | |
name: SaveMiiModWUTPort-HBL | |
path: SaveMiiModWUTPort-HBL.zip | |
if-no-files-found: warn |