Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Commit

Permalink
changed tag names
Browse files Browse the repository at this point in the history
  • Loading branch information
EirikKolas authored Sep 24, 2023
1 parent 11aeaa3 commit 8c9a874
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ on:

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

jobs:
build-and-push-image:
Expand Down Expand Up @@ -42,7 +43,7 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ matrix.filename }}
images: ${{ env.IMAGE_NAME_PREFIX }}-${{ matrix.filename }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand All @@ -60,7 +61,7 @@ jobs:
context: .
file: Dockerfile.${{ matrix.filename }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ matrix.filename }}:${{ matrix.architecture }}-latest
tags: ${{ env.REGISTRY }}/${{ env.REPOSITORY_NAME }}-${{ matrix.filename }}:${{ matrix.architecture }}-latest
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down

0 comments on commit 8c9a874

Please sign in to comment.