Skip to content

Commit b53a23e

Browse files
committed
Avoid concurrent publish and avoid run the scheduled action in clones.
1 parent 5cca0d1 commit b53a23e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/publish.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,13 @@ on:
88
- cron: "0 0 * * 1"
99
workflow_dispatch:
1010

11+
concurrency:
12+
group: ${{ github.workflow }}
13+
1114
jobs:
1215

1316
build-test-publish:
17+
if: ${{ github.event_name != 'schedule' || github.repository == 'FirebirdSQL/firebird-docker' }}
1418
runs-on: ubuntu-latest
1519

1620
steps:

0 commit comments

Comments
 (0)