From a33b5de31821cd9c9c5911fe89cf5c939d2d3f5a Mon Sep 17 00:00:00 2001 From: Muhammad Umar Khan Date: Mon, 14 Oct 2024 12:14:59 +0500 Subject: [PATCH] fix: add platform variable for credentials workflow --- .github/workflows/push-credentials-image.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/push-credentials-image.yaml b/.github/workflows/push-credentials-image.yaml index 7b6198f..c3ca642 100644 --- a/.github/workflows/push-credentials-image.yaml +++ b/.github/workflows/push-credentials-image.yaml @@ -9,6 +9,13 @@ on: schedule: - cron: "0 4 * * 1-5" # UTC Time + +# Added for testing purposes. Will remove once the PR is finalised + pull_request: + branches: + - '**' + + jobs: build-and-push-image: runs-on: ubuntu-latest @@ -43,6 +50,7 @@ jobs: push: true target: dev tags: edxops/credentials-dev:${{ steps.get-tag-name.outputs.result }} + platforms: linux/amd64,linux/arm64 - name: Send failure notification if: failure()