From b60d4c9e071240d3808347184c7e674de26bbe4e Mon Sep 17 00:00:00 2001 From: Bastian Krol Date: Tue, 30 Jan 2024 08:41:44 +0100 Subject: [PATCH] temporary changes for testing the container image push --- .github/workflows/build-images.yml | 4 ++-- .github/workflows/checks.yml | 1 + .github/workflows/release.yml | 6 ++++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml index 469a360596..b70164ceb9 100644 --- a/.github/workflows/build-images.yml +++ b/.github/workflows/build-images.yml @@ -125,7 +125,7 @@ jobs: fi - name: Configure AWS credentials - if: inputs.push == 'true' + # if: inputs.push uses: aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{secrets.DEPLOYMENT_WRITE_ECR_ACCESS_KEY}} @@ -135,7 +135,7 @@ jobs: - name: Login to Amazon ECR id: login-ecr - if: inputs.push == 'true' + # if: inputs.push == 'true' uses: aws-actions/amazon-ecr-login@v2 with: mask-password: true diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 5363fbefe4..5f25168119 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -84,3 +84,4 @@ jobs: with: push: false version: 'dev' + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 712e963ec6..e5c5482aa9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,10 +6,12 @@ on: release: types: [published] + workflow_dispatch: + jobs: build_and_push_images: uses: ./.github/workflows/build-images.yml with: push: true - version: ${{ github.event.release.tag_name }} - secrets: inherit + version: 0.0.1 + secrets: inherit \ No newline at end of file