Skip to content

Commit

Permalink
Merge pull request #96 from GeneriekPublicatiePlatformWoo/fix-docker-…
Browse files Browse the repository at this point in the history
…push

fix docker push
  • Loading branch information
felixcicatt authored Nov 13, 2024
2 parents cd71671 + ab93f02 commit 142581e
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
pull_request:
branches: [ "main" ]

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:

build:
Expand All @@ -21,16 +25,24 @@ jobs:
-
name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
-
name: Build and push
uses: docker/build-push-action@v6
with:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
context: .
file: ./ODPC.Server/Dockerfile
cache-from: type=gha
Expand Down

0 comments on commit 142581e

Please sign in to comment.