Skip to content

Update ghcr.io/basecamp/kamal Docker tag to v1.7.0 #694

Update ghcr.io/basecamp/kamal Docker tag to v1.7.0

Update ghcr.io/basecamp/kamal Docker tag to v1.7.0 #694

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
name: Build ${{ matrix.directories }}
runs-on: ubuntu-latest
strategy:
matrix:
directories: ['jenkins', 'node18', 'node20', 'php8.1-cli', 'php8.2-cli', 'php8.3-cli', 'aws-cli', 'kamal']
steps:
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- id: meta
uses: docker/metadata-action@v5
with:
images: runroom/${{ matrix.directories }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
- uses: docker/build-push-action@v5
with:
push: ${{ github.ref == 'refs/heads/main' }}
context: '{{defaultContext}}:${{ matrix.directories }}'
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max