From 8a7de52edf55d02222137c9dd9e233fa98b66fd4 Mon Sep 17 00:00:00 2001 From: Akash Singh Date: Tue, 7 May 2024 01:20:05 +0530 Subject: [PATCH] This time it may work lmao Signed-off-by: Akash Singh --- .github/workflows/release.yaml | 58 ++++++++++++++++++++++++++-------- 1 file changed, 44 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 53f1d66..2f208ff 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,4 +1,4 @@ -name: Publish Docker image to dockerhub and github packages +name: Publish Docker images to Docker Hub and GitHub Packages on: push: @@ -6,7 +6,7 @@ on: jobs: push_to_registries: - name: Push Docker image to multiple registries + name: Push Docker images to multiple registries runs-on: ubuntu-latest permissions: packages: write @@ -29,28 +29,58 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Extract metadata (tags, labels) for Docker - id: meta - uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 + # Build and push Docker images for each Dockerfile + - name: Build and push Docker image for Dockerfile.auth + uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 + with: + context: . + dockerfile: Dockerfile.auth + push: true + tags: mydockerhubusername/auth:${{ github.sha }} + + - name: Build and push Docker image for Dockerfile.blogs + uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 with: - images: | - akashsingh04/haal_samachar - ghcr.io/${{ github.repository }} + context: . + dockerfile: Dockerfile.blogs + push: true + tags: mydockerhubusername/blogs:${{ github.sha }} + + - name: Build and push Docker image for Dockerfile.comments + uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 + with: + context: . + dockerfile: Dockerfile.comments + push: true + tags: mydockerhubusername/comments:${{ github.sha }} + + - name: Build and push Docker image for Dockerfile.frontend + uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 + with: + context: . + dockerfile: Dockerfile.frontend + push: true + tags: mydockerhubusername/frontend:${{ github.sha }} + + - name: Build and push Docker image for Dockerfile.graph + uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 + with: + context: . + dockerfile: Dockerfile.graph + push: true + tags: mydockerhubusername/graph:${{ github.sha }} - - name: Build and push Docker images - id: push + - name: Build and push Docker image for Dockerfile.users uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 with: context: . + dockerfile: Dockerfile.users push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} + tags: mydockerhubusername/users:${{ github.sha }} - - name: Generate artifact attestation uses: actions/attest-build-provenance@v1 with: subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}} subject-digest: ${{ steps.push.outputs.digest }} push-to-registry: true -