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
10 changes: 5 additions & 5 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name: Docker Build
on:
push:
branches: [ main ]
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
pull_request:
branches: [ main ]
workflow_dispatch:
# Version tag publishing — disabled for now
# push:
# tags:
# - 'v[0-9]+.[0-9]+.[0-9]+*'

permissions:
packages: write
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
file: docker/Dockerfile
build-args: |
GIT_SHA=${{ github.sha }}
push: ${{ github.event_name != 'pull_request' }}
push: ${{ startsWith(github.ref, 'refs/tags/v') }}
cache-from: type=registry,ref=ghcr.io/projectasap/asap-arroyo:buildcache
cache-to: type=registry,ref=ghcr.io/projectasap/asap-arroyo:buildcache,mode=max
target: arroyo-full
Expand Down