Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Use Docker and GitHub Actions #1

Use Docker and GitHub Actions

Use Docker and GitHub Actions #1

Workflow file for this run

name: Build Binary
on: [push, pull_request]
jobs:
build-binary:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build Binary
run: |
docker build -t builder .
docker run --rm -v ${PWD}:/project builder make
- uses: actions/upload-artifact@v3
with:
name: Button_Break.rpx
path: "*.rpx"
if-no-files-found: error
- uses: actions/upload-artifact@v3
with:
name: Button_Break.wuhb
path: "*.wuhb"
if-no-files-found: error