Skip to content

Update README.md

Update README.md #25

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)
- name: create distribution .zip
run: |
docker run --rm -v ${PWD}:/project builder make dist
- uses: actions/upload-artifact@master
with:
name: dumpling
path: "./dist/wiiu/"