mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-12-26 04:17:33 +00:00
Cancel previous concurrent build actions.
This commit is contained in:
parent
4dcfaff73a
commit
31d43177a0
3
.github/workflows/build-and-test-linux.yaml
vendored
3
.github/workflows/build-and-test-linux.yaml
vendored
@ -1,5 +1,8 @@
|
||||
name: Build and test on Linux
|
||||
on: [push, pull_request]
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
|
3
.github/workflows/build-and-test-macos.yaml
vendored
3
.github/workflows/build-and-test-macos.yaml
vendored
@ -1,5 +1,8 @@
|
||||
name: Build and test on macOS
|
||||
on: [push, pull_request]
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
|
4
.github/workflows/docker.yaml
vendored
4
.github/workflows/docker.yaml
vendored
@ -10,6 +10,10 @@ on:
|
||||
tags:
|
||||
- v*
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
IMAGE_NAME: conky
|
||||
DOCKERHUB_ACCOUNT: brndnmtthws
|
||||
|
4
.github/workflows/publish-appimage.yml
vendored
4
.github/workflows/publish-appimage.yml
vendored
@ -6,6 +6,10 @@ on:
|
||||
tags:
|
||||
- v*
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-22.04
|
||||
|
Loading…
Reference in New Issue
Block a user