Wii-U-Account-Swap/.github/workflows/build.yml
dependabot[bot] c06de776f7
Some checks failed
Build Binary / build-binary (push) Has been cancelled
Bump actions/checkout from 5 to 6 (#20)
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>
2025-12-01 19:09:20 -07:00

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