Upload artifacts; don't use a specific image hash; fix yamllint false-positive
All checks were successful
Build / build-sporq (push) Successful in 1m49s

This commit is contained in:
Marius Alwan Meyer 2023-07-17 11:47:51 +02:00
parent 7d991fe73d
commit ec6e41197f

View File

@ -1,12 +1,12 @@
on: [push, pull_request, workflow_dispatch]
name: Build name: Build
on: [push, pull_request, workflow_dispatch] # yamllint disable-line rule:truthy
jobs: jobs:
build-sporq: build-sporq:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: ghcr.io/qmk/qmk_base_container:latest@sha256:d27f995fd142681b273d95dc150d3a3683b6b1884b4c46f70c00a1a991d0e11e image: ghcr.io/qmk/qmk_base_container:latest
steps: steps:
- name: Install Dependencies - name: Install Dependencies
run: | run: |
@ -20,3 +20,15 @@ jobs:
- name: Build sporq keymap for splitkb/aurora/corne/rev1 - name: Build sporq keymap for splitkb/aurora/corne/rev1
run: qmk compile -kb splitkb/aurora/corne/rev1 -km sporq run: qmk compile -kb splitkb/aurora/corne/rev1 -km sporq
- name: 'Upload artifacts'
uses: actions/upload-artifact@v3
if: always()
with:
name: artifacts-${{ github.event.inputs.branch || github.ref_name }}-${{ matrix.keymap }}
if-no-files-found: ignore
path: |
*.bin
*.hex
*.uf2
.build/failed.*