Skip to content

feat(efb): install more middlewares #3

feat(efb): install more middlewares

feat(efb): install more middlewares #3

Workflow file for this run

---
name: 'build'
on:
push:
branches:
- master
paths-ignore:
- '.github/dependabot.yml'
- 'LICENSE'
- 'README.md'
jobs:
docker:
name: Build and push Docker image
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform:
- linux/amd64
- linux/arm64
steps:
-
name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/ehforwarderbot
tags: |
type=sha,prefix=sha-,format=short
type=raw,value=latest
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to GitHub Container Registry
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
platforms: ${{ matrix.platform }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max