fix: Build Pipeline

This commit is contained in:
Ben Hall 2025-01-09 13:41:03 +00:00 committed by GitHub
parent ce5c0f9907
commit 02e75b6813
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,6 +9,7 @@ env:
on: on:
push: push:
branches: [ "master" ] branches: [ "master" ]
workflow_dispatch:
jobs: jobs:
publish-image: publish-image:
@ -32,20 +33,22 @@ jobs:
- name: Set image name - name: Set image name
run: | run: |
echo "IMAGE_NAME=${REGISTRY}/${GITHUB_REPOSITORY_OWNER,,}/${PACKAGE_NAME,,}:${GITHUB_SHA}" >> ${GITHUB_ENV} echo "IMAGE_NAME=${REGISTRY}/${GITHUB_REPOSITORY_OWNER,,}/${PACKAGE_NAME,,}" >> ${GITHUB_ENV}
- name: Extract metadata (tags, labels) for Docker - name: Extract metadata (tags, labels) for Docker
id: meta id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with: with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
- name: Build and push Docker image - name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 uses: docker/build-push-action@v6
with: with:
context: . context: .
push: true push: true
tags: ${{ env.IMAGE_NAME }} tags:
- ${{ env.IMAGE_NAME }}:latest
- ${{ env.IMAGE_NAME }}:${{ github.sha }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
- name: Log image name - name: Log image name