Some checks failed
Build and Publish Docker Image / build (pull_request) Failing after 46s
96 lines
3.6 KiB
YAML
96 lines
3.6 KiB
YAML
name: Build and Publish Docker Image
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags: [ 'v*' ]
|
|
pull_request:
|
|
branches: [ main, master ]
|
|
|
|
env:
|
|
REGISTRY: git.quad4.io
|
|
IMAGE_NAME: RNS-Things/rns-page-node
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
outputs:
|
|
image_digest: ${{ steps.build.outputs.digest }}
|
|
image_tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: https://git.quad4.io/actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
|
|
|
- name: Set up QEMU
|
|
uses: https://git.quad4.io/actions/setup-qemu-action@3a1695b1353f9f8868722ffaafc1f164ef35fa5e # v3
|
|
with:
|
|
platforms: amd64,arm64
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: https://git.quad4.io/actions/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
|
|
|
|
- name: Log in to the Container registry
|
|
uses: https://git.quad4.io/actions/login-action@bb91d7e20cfedb030a44164cb558bba899e1010a # v3
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
id: meta
|
|
uses: https://git.quad4.io/actions/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5
|
|
with:
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
tags: |
|
|
type=raw,value=latest,enable={{is_default_branch}}
|
|
type=ref,event=branch,prefix=,suffix=,enable={{is_default_branch}}
|
|
type=ref,event=pr
|
|
type=semver,pattern={{version}}
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
type=sha,format=short
|
|
|
|
- name: Build and push Docker image
|
|
id: build
|
|
uses: https://git.quad4.io/actions/build-push-action@dc0c2d97df39a6939d9db7d572445529e2365ec6 # v6
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile
|
|
platforms: linux/amd64,linux/arm64
|
|
push: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
build-args: |
|
|
BUILD_DATE=${{ github.event.head_commit.timestamp }}
|
|
VCS_REF=${{ github.sha }}
|
|
VERSION=${{ steps.meta.outputs.version }}
|
|
|
|
- name: Extract metadata (tags, labels) for Docker (rootless)
|
|
id: meta_rootless
|
|
uses: https://git.quad4.io/actions/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5
|
|
with:
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-rootless
|
|
tags: |
|
|
type=raw,value=latest-rootless,enable={{is_default_branch}}
|
|
type=ref,event=branch,prefix=,suffix=-rootless,enable={{is_default_branch}}
|
|
type=semver,pattern={{version}},suffix=-rootless
|
|
type=semver,pattern={{major}}.{{minor}},suffix=-rootless
|
|
type=sha,format=short,suffix=-rootless
|
|
|
|
- name: Build and push rootless Docker image
|
|
uses: https://git.quad4.io/actions/build-push-action@dc0c2d97df39a6939d9db7d572445529e2365ec6 # v6
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile.rootless
|
|
platforms: linux/amd64,linux/arm64
|
|
push: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
|
tags: ${{ steps.meta_rootless.outputs.tags }}
|
|
labels: ${{ steps.meta_rootless.outputs.labels }}
|
|
build-args: |
|
|
BUILD_DATE=${{ github.event.head_commit.timestamp }}
|
|
VCS_REF=${{ github.sha }}
|
|
VERSION=${{ steps.meta_rootless.outputs.version }}
|