fix: ci #283
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build images | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
TAG_NAME: 3.4.1-alpine | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Set up QEMU | |
uses: docker/[email protected] | |
with: | |
platforms: linux/amd64,linux/arm64 | |
- name: Login to ghcr.io | |
uses: docker/[email protected] | |
if: github.ref == 'refs/heads/main' | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push BUILDER image | |
uses: docker/[email protected] | |
with: | |
context: '{{defaultContext}}:builder' | |
platforms: linux/amd64,linux/arm64 | |
provenance: false | |
push: ${{ github.ref == 'refs/heads/main' }} | |
tags: | | |
ghcr.io/${{ github.repository_owner }}/rails-base-builder:${{ env.TAG_NAME }} | |
ghcr.io/${{ github.repository_owner }}/rails-base-builder:latest | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Build and push FINAL image | |
uses: docker/[email protected] | |
with: | |
context: '{{defaultContext}}:final' | |
platforms: linux/amd64,linux/arm64 | |
provenance: false | |
push: ${{ github.ref == 'refs/heads/main' }} | |
tags: | | |
ghcr.io/${{ github.repository_owner }}/rails-base-final:${{ env.TAG_NAME }} | |
ghcr.io/${{ github.repository_owner }}/rails-base-final:latest | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |