Skip to content

Update Github CI to latest version #16

Update Github CI to latest version

Update Github CI to latest version #16

Workflow file for this run

name: CI-Release
on:
pull_request:
types: [ opened, reopened ]
push:
branches:
- master
jobs:
build-binary:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build binary
run: |
docker build . -t builder
docker run --rm -v ${PWD}:/project builder make -j$(nproc)
- uses: actions/upload-artifact@master
with:
name: binary
path: "*.rpx"
- uses: actions/upload-artifact@master
with:
name: binary
path: "*.wuhb"
- uses: actions/upload-artifact@master
with:
name: binary
path: "*.elf"