From f9c1cdbf2a86b3e74e9b80ac3018f7dd09fab034 Mon Sep 17 00:00:00 2001 From: liyang wang Date: Wed, 23 Aug 2023 16:45:41 -0400 Subject: [PATCH 1/3] added ibm cloud api key --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 779aa13..36a103c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -184,6 +184,7 @@ jobs: build-args: |- SN_GITHUB_NPM_TOKEN=${{ secrets.NPM_TOKEN }} SN_GITHUB_NPM_REGISTRY=https://npm.pkg.github.com + IBM_CLOUD_API_KEY=${{ secrets.IBM_CLOUD_API_KEY }} - name: Scan image if: ${{ inputs.scan_image_enabled && ( github.ref_type != 'tag' || steps.check-ref.outputs.has_alpha == 'false' ) }} From 73e3f90e7e5e0df2ae0b594a618a3c709e4f41a4 Mon Sep 17 00:00:00 2001 From: liyang wang Date: Tue, 12 Mar 2024 15:00:30 -0400 Subject: [PATCH 2/3] feat(schedule release): include the latest release tag in the scheduled builds --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 36a103c..539396c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -145,6 +145,7 @@ jobs: tags: | type=semver,pattern={{version}} type=schedule,pattern=${{ steps.base-release.outputs.base-release }}-{{date 'YYYYMMDD'}} + type=schedule,pattern=${{ steps.base-release.outputs.base-release }},enable=${{ github.event_name == 'schedule' }} type=raw,value=manual,suffix=${{ github.event.inputs.suffix }},enable=${{ github.event_name == 'workflow_dispatch' }} - name: Should we cache From 94265ecd9108e6ae00184e637d5dcb13d7645268 Mon Sep 17 00:00:00 2001 From: liyang wang Date: Tue, 12 Mar 2024 15:12:20 -0400 Subject: [PATCH 3/3] revert --- .github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 539396c..d06cd45 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -185,7 +185,6 @@ jobs: build-args: |- SN_GITHUB_NPM_TOKEN=${{ secrets.NPM_TOKEN }} SN_GITHUB_NPM_REGISTRY=https://npm.pkg.github.com - IBM_CLOUD_API_KEY=${{ secrets.IBM_CLOUD_API_KEY }} - name: Scan image if: ${{ inputs.scan_image_enabled && ( github.ref_type != 'tag' || steps.check-ref.outputs.has_alpha == 'false' ) }}