Skip to content

refactor: attempt to effectively remove ignored path from config #6078

refactor: attempt to effectively remove ignored path from config

refactor: attempt to effectively remove ignored path from config #6078

Workflow file for this run

on:
push:
branches:
- '**'
tags:
- '*'
name: Build / Release Docker Images
jobs:
build:
runs-on: ubuntu-22.04
if: ${{ github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/') }}
strategy:
matrix:
package: [auth, backend, frontend]
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/build-push-action@v5
with:
push: false
file: packages/${{ matrix.package }}/Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=max
build-and-push:
runs-on: ubuntu-22.04
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }}
strategy:
matrix:
package: [auth, backend, frontend]
steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/rafiki-${{ matrix.package }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: packages/${{ matrix.package }}/Dockerfile
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max