Skip to content

Commit

Permalink
github: workflow: build-container: don't hardcode repo
Browse files Browse the repository at this point in the history
  • Loading branch information
herbetom committed Nov 27, 2023
1 parent 1c8cb96 commit e71eed9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

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

jobs:
build-and-push-image:
Expand All @@ -36,7 +36,7 @@ jobs:
id: meta
uses: docker/metadata-action@62339db73c56dd749060f65a6ebb93a6e056b755
with:
images: ${{ env.REGISTRY }}/freifunk-gluon/${{ env.IMAGE_NAME }}
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@fdf7f43ecf7c1a5c7afe936410233728a8c2d9c2
with:
Expand Down

0 comments on commit e71eed9

Please sign in to comment.