Build Docker image #2
Workflow file for this run
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 Docker image | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- dev | ||
tags: | ||
- '*' | ||
pull_request: | ||
paths: | ||
- .github/workflows/build-docker.yml | ||
- contrib/docker/Dockerfile.apache | ||
- contrib/docker/Dockerfile.fpm | ||
permissions: | ||
contents: read | ||
jobs: | ||
build-docker-apache: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
- name: Docker Lint | ||
uses: hadolint/[email protected] | ||
with: | ||
dockerfile: contrib/docker/Dockerfile.apache | ||
failure-threshold: error | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
secrets: inherit | ||
Check failure on line 41 in .github/workflows/build-docker.yml GitHub Actions / Build Docker imageInvalid workflow file
|
||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
if: github.event_name != 'pull_request' | ||
- name: Fetch tags | ||
uses: docker/metadata-action@v4 | ||
secrets: inherit | ||
id: meta | ||
with: | ||
images: ${{ secrets.DOCKER_HUB_ORGANISATION }}/pixelfed | ||
flavor: | | ||
latest=auto | ||
suffix=-apache | ||
tags: | | ||
type=edge,branch=dev | ||
type=pep440,pattern={{raw}} | ||
type=pep440,pattern=v{{major}}.{{minor}} | ||
type=ref,event=pr | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
file: contrib/docker/Dockerfile.apache | ||
platforms: linux/amd64,linux/arm64 | ||
builder: ${{ steps.buildx.outputs.name }} | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
build-docker-fpm: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
- name: Docker Lint | ||
uses: hadolint/[email protected] | ||
with: | ||
dockerfile: contrib/docker/Dockerfile.fpm | ||
failure-threshold: error | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
secrets: inherit | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
if: github.event_name != 'pull_request' | ||
- name: Fetch tags | ||
uses: docker/metadata-action@v4 | ||
secrets: inherit | ||
id: meta | ||
with: | ||
images: ${{ secrets.DOCKER_HUB_ORGANISATION }}/pixelfed | ||
flavor: | | ||
suffix=-fpm | ||
tags: | | ||
type=edge,branch=dev | ||
type=pep440,pattern={{raw}} | ||
type=pep440,pattern=v{{major}}.{{minor}} | ||
type=ref,event=pr | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
file: contrib/docker/Dockerfile.fpm | ||
platforms: linux/amd64,linux/arm64 | ||
builder: ${{ steps.buildx.outputs.name }} | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max |