We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc8cf0b commit 47f30d0Copy full SHA for 47f30d0
.github/workflows/on-tag.yml
@@ -21,9 +21,15 @@ jobs:
21
service:
22
- frontend
23
- backend
24
- runs-on: [self-hosted, Linux, X64]
+ # Add fail-fast configuration
25
+ fail-fast: false
26
+ runs-on: ${{ github.event.repository.has_issues && 'ubuntu-latest' || 'self-hosted' }}
27
timeout-minutes: 120
28
name: Build and push to DockerHub
29
+ # Add concurrency group to prevent multiple runs
30
+ concurrency:
31
+ group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.service }}
32
+ cancel-in-progress: true
33
steps:
34
# Workaround based on JonasAlfredsson/[email protected]
35
- name: Replace the current swap file
0 commit comments