diff --git a/.github/workflows/buildx.yml b/.github/workflows/buildx.yml index 95a2a8d..b551914 100644 --- a/.github/workflows/buildx.yml +++ b/.github/workflows/buildx.yml @@ -6,9 +6,6 @@ on: branches: [main, updates] types: - completed - push: - tags: - - '*' release: types: - published @@ -76,10 +73,11 @@ jobs: --tag benbusby/whoogle-search:${VERSION} \ --tag ghcr.io/benbusby/whoogle-search:${VERSION} \ --platform linux/amd64,linux/arm/v7,linux/arm64 . - - name: build and push tag - if: startsWith(github.ref, 'refs/tags') - run: | - docker buildx build --push \ - --tag benbusby/whoogle-search:${GITHUB_REF#refs/*/v} \ - --tag ghcr.io/benbusby/whoogle-search:${GITHUB_REF#refs/*/v} \ - --platform linux/amd64,linux/arm/v7,linux/arm64 . \ No newline at end of file + # Disabled: Use GitHub releases instead (triggers release or pre-release workflows above) + # - name: build and push tag + # if: startsWith(github.ref, 'refs/tags') + # run: | + # docker buildx build --push \ + # --tag benbusby/whoogle-search:${GITHUB_REF#refs/*/v} \ + # --tag ghcr.io/benbusby/whoogle-search:${GITHUB_REF#refs/*/v} \ + # --platform linux/amd64,linux/arm/v7,linux/arm64 . \ No newline at end of file