From eef2cc374135d58ed44e88d54e6e6dfff475eb9f Mon Sep 17 00:00:00 2001 From: Conrad Date: Fri, 25 Oct 2024 14:00:20 +0200 Subject: [PATCH] fix: renamed pong package --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ce2bb7..cfd4c97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,6 @@ on: - dev - master paths-ignore: - - "**/.github/**" - "**/.gitignore" - "**/.vscode/**" - "**/README.md" @@ -106,7 +105,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ github.ref_name }} + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} tags: latest - name: Build and push Docker image @@ -115,7 +114,7 @@ jobs: context: . file: ./Dockerfile build-args: | - VERSION=${{ needs.tag.outputs.version }}-${{ github.ref_name }} + VERSION=${{ needs.tag.outputs.version }} push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}