mirror of https://github.com/google/gemma.cpp.git
Fix concurrency key in GitHub Actions.
Use matrix configuration in concurrency key.
This commit is contained in:
parent
74b27074e1
commit
c08de58e6a
|
|
@ -1,4 +1,4 @@
|
||||||
name: Build
|
name: build
|
||||||
|
|
||||||
# Trigger on push, pull request, or via manual dispatch.
|
# Trigger on push, pull request, or via manual dispatch.
|
||||||
on: [push, pull_request, workflow_dispatch]
|
on: [push, pull_request, workflow_dispatch]
|
||||||
|
|
@ -16,7 +16,7 @@ jobs:
|
||||||
os: ['ubuntu-latest', 'macos-latest']
|
os: ['ubuntu-latest', 'macos-latest']
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.type }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue