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 }}