Skip to content

Update docker/build-push-action action to v6.7.0 #86

Update docker/build-push-action action to v6.7.0

Update docker/build-push-action action to v6.7.0 #86

Workflow file for this run

name: Publish Docker image
on:
release:
types: [published]
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
push_to_registries:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
config:
- {name: imongr}
name: Image shinyproxy-${{ matrix.config.name }}
steps:
- name: Check out the repo
uses: actions/checkout@v4.1.7
- name: Lint Dockerfile
uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: "${{ matrix.config.name }}/Dockerfile"
- name: Prepare tags
id: docker_meta
uses: docker/metadata-action@v5.5.1
with:
images: hnskde/shinyproxy-${{ matrix.config.name }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3.0.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.3.0
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3.2.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push to Docker Hub
uses: docker/build-push-action@v6.3.0
with:
context: ./${{ matrix.config.name }}
platforms: linux/amd64,linux/arm64
file: ./${{ matrix.config.name }}/Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
build-args: GH_PAT=${{ secrets.GITHUB_TOKEN }}
cache-from: type=gha
cache-to: type=gha,mode=max