Compare commits

..

1 Commits
1.0.1 ... 1.0.2

Author SHA1 Message Date
eef2cc3741 fix: renamed pong package 2024-10-25 14:00:20 +02:00

View File

@@ -6,7 +6,6 @@ on:
- dev - dev
- master - master
paths-ignore: paths-ignore:
- "**/.github/**"
- "**/.gitignore" - "**/.gitignore"
- "**/.vscode/**" - "**/.vscode/**"
- "**/README.md" - "**/README.md"
@@ -106,7 +105,7 @@ jobs:
id: meta id: meta
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
with: with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ github.ref_name }} images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: latest tags: latest
- name: Build and push Docker image - name: Build and push Docker image
@@ -115,7 +114,7 @@ jobs:
context: . context: .
file: ./Dockerfile file: ./Dockerfile
build-args: | build-args: |
VERSION=${{ needs.tag.outputs.version }}-${{ github.ref_name }} VERSION=${{ needs.tag.outputs.version }}
push: true push: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}