From fda3f466858475966243f627bc892d2ebfaa3239 Mon Sep 17 00:00:00 2001 From: Jay Danielsen Date: Tue, 15 Oct 2024 10:36:48 -0400 Subject: [PATCH] fix image label --- .github/workflows/build-deploy-pipeline.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-deploy-pipeline.yaml b/.github/workflows/build-deploy-pipeline.yaml index 2be527c..5643449 100644 --- a/.github/workflows/build-deploy-pipeline.yaml +++ b/.github/workflows/build-deploy-pipeline.yaml @@ -12,7 +12,7 @@ on: jobs: release: runs-on: ubuntu-latest - name: Release + name: Build and Test steps: - name: Set up Go 1.13 uses: actions/setup-go@v5 @@ -47,5 +47,5 @@ jobs: with: push: true tags: | - ${{ format('{0}/{1}-{2}', github.event.repository.name, github.ref_name, 'amd64') }} - ${{ format('{0}/{1}-{2}', github.event.repository.name, github.ref_name, github.run_id) }} + ${{ format('{0}:{1}-{2}', github.event.repository.name, github.ref_name, 'amd64') }} + ${{ format('{0}:{1}-{2}', github.event.repository.name, github.ref_name, github.run_id) }}