Skip to content

Consolidate code checks, use edge release for main pushes #5

Consolidate code checks, use edge release for main pushes

Consolidate code checks, use edge release for main pushes #5

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
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

Check failure on line 38 in .github/workflows/release-images.yml

View workflow run for this annotation

GitHub Actions / Publish Docker Images

Invalid workflow file

The workflow is not valid. .github/workflows/release-images.yml (Line: 38, Col: 13): The identifier 'meta' may not be used more than once within the same scope. .github/workflows/release-images.yml (Line: 80, Col: 13): The identifier 'meta' may not be used more than once within the same scope.
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.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
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
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
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.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}