mirror of
https://github.com/Nightkingale/Wii-U-Account-Swap.git
synced 2026-04-26 00:10:36 -05:00
Some checks failed
Build Binary / build-binary (push) Has been cancelled
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
31 lines
710 B
YAML
31 lines
710 B
YAML
name: Build Binary
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build-binary:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Build Binary
|
|
run: |
|
|
docker build -t builder .
|
|
docker run --rm -v ${PWD}:/project builder make DEBUG=1
|
|
|
|
- name: Upload Wii_U_Account_Swap.rpx
|
|
uses: actions/upload-artifact@v5
|
|
with:
|
|
name: Wii_U_Account_Swap.rpx
|
|
path: "*.rpx"
|
|
if-no-files-found: error
|
|
|
|
- name: Upload Wii_U_Account_Swap.wuhb
|
|
uses: actions/upload-artifact@v5
|
|
with:
|
|
name: Wii_U_Account_Swap.wuhb
|
|
path: "*.wuhb"
|
|
if-no-files-found: error |