From ceff3f0e3458dab71a040c318928c223060a442c Mon Sep 17 00:00:00 2001 From: cybermaggedon Date: Mon, 6 Jan 2025 21:52:25 +0000 Subject: [PATCH] Remove 2nd push (#258) --- .github/workflows/release.yaml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index bec60a0d..c182578a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -65,34 +65,12 @@ jobs: - name: Put version into package manifests run: make update-package-versions VERSION=${{ steps.version.outputs.VERSION }} - - name: Extract metadata for container - id: meta - uses: docker/metadata-action@v4 - with: - images: trustgraph/trustgraph-flow - tags: | - type=ref,event=branch - type=ref,event=pr - type=semver,pattern={{version}} - type=semver,pattern={{major}}.{{minor}} - type=sha - - name: Build containers run: make container VERSION=${{ steps.version.outputs.VERSION }} - name: Push containers run: make push VERSION=${{ steps.version.outputs.VERSION }} - - name: Build and push Docker image - id: push - uses: docker/build-push-action@v6 - with: - context: . - file: ./Containerfile - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - release-bundle: name: Upload release bundle