Skip to content

Commit 25c1876

Browse files
committed
Add concurrency group
1 parent bb7a4f6 commit 25c1876

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/debian.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ on:
44
push:
55
paths:
66
- .github/workflows/debian.yml
7-
- assets
7+
- recipes
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
812

913
env:
1014
CONAN_URL: ${{ secrets.CONAN_URL }}
@@ -16,10 +20,8 @@ jobs:
1620
strategy:
1721
matrix:
1822
architecture:
19-
- platform: linux/amd64
20-
runner: ubuntu-24.04
21-
# - platform: linux/arm64
22-
# runner: ubuntu-24.04-arm
23+
- runner: ubuntu-24.04
24+
# - runner: ubuntu-24.04-arm
2325
docker:
2426
- image: ghcr.io/xrplf/ci/debian-bookworm:gcc-12
2527
# - image: ghcr.io/xrplf/ci/debian-bookworm:gcc-13
@@ -39,6 +41,6 @@ jobs:
3941
uses: actions/checkout@v4
4042
- name: Build the recipe
4143
working-directory: recipes/${{ matrix.package.name }}/all
42-
run: conan create , --version ${{ matrix.package.version }} --build=missing --update
44+
run: conan create . --version ${{ matrix.package.version }} --build=missing --update
4345
- name: Upload the recipe
4446
run: conan upload '${{ matrix.package.name }}' --remote ${{ env.CONAN_URL }} --confirm --dry-run

0 commit comments

Comments
 (0)