Change name of workflows

This commit is contained in:
Maschell 2022-02-11 19:59:34 +01:00
parent 076134a77c
commit a9aab3646a
1 changed files with 3 additions and 3 deletions

View File

@ -10,16 +10,16 @@ jobs:
- name: clang-format
run: |
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./source ./include
build-binary:
build-lib:
runs-on: ubuntu-18.04
needs: clang-format
steps:
- uses: actions/checkout@v2
- name: build binary
- name: build lib
run: |
docker build . -f Dockerfile.buildlocal -t builder
docker run --rm -v ${PWD}:/project builder make
- uses: actions/upload-artifact@master
with:
name: binary
name: lib
path: "lib/*.a"