From f60a288d81b334035f9d4ae1179a44111592dc2b Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Thu, 24 Apr 2025 17:21:50 -0700 Subject: [PATCH 1/3] fix(release): pass through secret to publish workflow by name --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7ce6195..196a388 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,4 +26,4 @@ jobs: with: tag_name: ${{ github.ref_name }} secrets: - publish_token: ${{ secrets.BCR_PUBLISH_TOKEN }} + BCR_PUBLISH_TOKEN: ${{ secrets.BCR_PUBLISH_TOKEN }} From 07ef0971a65c9ce8484b91cc26b3a11546c4a19f Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Thu, 24 Apr 2025 17:32:09 -0700 Subject: [PATCH 2/3] fix --- .github/workflows/publish.yaml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 5bee1fc..63ffd5c 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -31,4 +31,4 @@ jobs: id-token: write secrets: # Necessary to push to the BCR fork, and to open a pull request against a registry - publish_token: ${{ secrets.BCR_PUBLISH_TOKEN }} + publish_token: ${{ secrets.publish_token || secrets.BCR_PUBLISH_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 196a388..7ce6195 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,4 +26,4 @@ jobs: with: tag_name: ${{ github.ref_name }} secrets: - BCR_PUBLISH_TOKEN: ${{ secrets.BCR_PUBLISH_TOKEN }} + publish_token: ${{ secrets.BCR_PUBLISH_TOKEN }} From 20bdbea24aac4321417debe529009300c99b1434 Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Thu, 24 Apr 2025 18:11:30 -0700 Subject: [PATCH 3/3] delete --- .bcr/config.yml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .bcr/config.yml diff --git a/.bcr/config.yml b/.bcr/config.yml deleted file mode 100644 index 9828ad2..0000000 --- a/.bcr/config.yml +++ /dev/null @@ -1,3 +0,0 @@ -fixedReleaser: - login: alexeagle - email: alex@aspect.dev