diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 99e3fb7..661251c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -127,8 +127,8 @@ jobs: uses: actions/checkout@v3 - name: Checkout dependencies uses: ./.github/actions/deps-setup - - name: Test - run: make docker-build + - name: Build image + run: make docker-build-notest release: if: github.ref_type == 'tag' @@ -149,6 +149,10 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} + - name: Set short SHA + shell: bash + run: | + echo "DOCKER_SHORT_TAG=${${{ github.sha }}:0:7}" >> $GITHUB_ENV - name: Run GoReleaser uses: goreleaser/goreleaser-action@v5 with: