Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,15 @@ jobs:
service:
- frontend
- backend
runs-on: [self-hosted, Linux, X64]
# Add fail-fast configuration
fail-fast: false
runs-on: ${{ github.event.repository.has_issues && 'ubuntu-latest' || 'self-hosted' }}
timeout-minutes: 120
name: Build and push to DockerHub
# Add concurrency group to prevent multiple runs
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.service }}
cancel-in-progress: true
steps:
# Workaround based on JonasAlfredsson/docker-on-tmpfs@v1.0.1
- name: Replace the current swap file
Expand Down
Loading