adjust metadata text #39
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 and push Docker | |
on: | |
push: | |
branches: | |
- 'main' | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
pull_request: | |
branches: | |
- 'disabled-main' | |
workflow_dispatch: | |
env: | |
IMAGE_NAME: ${{ github.event.repository.name }} | |
# for next.config.js must set it at build time and pass as build-arg to Dockerfile | |
PLAUSIBLE_SERVER_URL: 'https://plausible.arm1.nemanjamitic.com' | |
# needed for metadata | |
SITE_HOSTNAME: 'hackernews-new-jobs.arm1.nemanjamitic.com' | |
jobs: | |
build: | |
name: Build and push docker image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Print commit id, message and tag | |
run: | | |
git show -s --format='%h %s' | |
echo "github.ref -> {{ github.ref }}" | |
# for arm image | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker metadata | |
# disable this step | |
if: false | |
id: metadata | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.IMAGE_NAME }} | |
tags: | | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
type=raw,value={{sha}},enable=${{ github.ref_type != 'tag' }} | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v3 | |
# if: ${{ github.ref_type == 'tag' }} | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
# src dir | |
context: ./ | |
# Dockerfile dir | |
file: ./Dockerfile | |
build-args: | | |
"ARG_PLAUSIBLE_SERVER_URL=${{ env.PLAUSIBLE_SERVER_URL }}" | |
"ARG_SITE_HOSTNAME=${{ env.SITE_HOSTNAME }}" | |
# available linux/amd64,linux/arm64 | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}:latest | |
# disabled metadata step | |
# tags: ${{ steps.metadata.outputs.tags }} | |
# labels: ${{ steps.metadata.outputs.labels }} | |
cache-from: type=registry,ref=${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}:buildcache | |
cache-to: type=inline |