Skip to content

Workflow file for this run

name: Publish Docker Images
on:
push:
branches:
- main
release:
types:
- published
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
push_backend:
name: Push Backend Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
- name: Gather Tags and Labels (Release)
id: meta_release
uses: docker/[email protected]
with:
images: glossawy/rss-feed-editor
tags: type=match,pattern=\d.\d,group=0
if: ${{ github.event_name == 'release' }}
- name: Gather Tags and Labels (Push)
id: meta_push
uses: docker/[email protected]
with:
images: glossawy/rss-feed-editor
tags: type=raw,value=edge
if: ${{ github.event_name == 'push' }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and Push
uses: docker/build-push-action@v5
with:
file: ./Dockerfile
context: .
platforms: linux/arm64,linux/amd64
push: true
tags: ${{ steps.meta_release.outputs.tags || steps.meta_push.outputs.tags }}
labels: ${{ steps.meta_release.outputs.labels || steps.meta_push.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
push_frontend:
name: Push Frontend Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
- name: Gather Tags and Labels (Release)
id: meta_release
uses: docker/[email protected]
with:
images: glossawy/rss-feed-editor-frontend
tags: type=match,pattern=\d.\d,group=0
if: ${{ github.event_name == 'release' }}
- name: Gather Tags and Labels (Push)
id: meta_push
uses: docker/[email protected]
with:
images: glossawy/rss-feed-editor-frontend
tags: type=raw,value=edge
if: ${{ github.event_name == 'push' }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and Push
uses: docker/build-push-action@v5
with:
file: ./Dockerfile.frontend
context: .
platforms: linux/arm64,linux/amd64
push: true
tags: ${{ steps.meta_release.outputs.tags || steps.meta_push.outputs.tags }}
labels: ${{ steps.meta_release.outputs.labels || steps.meta_push.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max