Skip to content

Commit

Permalink
Merge pull request #316 from malaupa/development
Browse files Browse the repository at this point in the history
fix tag
  • Loading branch information
jandd authored Mar 20, 2023
2 parents 6b4d9de + 180c366 commit b2275c5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

env:
REGISTRY: ghcr.io

jobs:
# build the production Docker image using information from
# https://github.com/marketplace/actions/build-and-push-docker-images
Expand All @@ -28,7 +31,7 @@ jobs:
name: Login to github docker registry
uses: docker/login-action@v2
with:
registry: ghcr.io
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
Expand All @@ -38,4 +41,4 @@ jobs:
with:
push: true
# usage of image in a Dockerfile: ghcr.io/devdaydresden/devday_website:latest
tags: ${{ github.repository }}:latest
tags: ${{ env.REGISTRY }}/${{ github.repository }}:latest

0 comments on commit b2275c5

Please sign in to comment.