Skip to content

Commit 3b7b561

Browse files
committed
test
1 parent e7803c2 commit 3b7b561

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ env:
3838
jobs:
3939
# We need two separate jobs based on whether we are releasing to BCR. Releasing to BCR requires
4040
# elevated permissions, which cannot be set dynamically within a single job.
41-
# TODO(dramaix): merge release_common.yaml into this file and remove the need for two jobs.
41+
# TODO(dramaix): merge release_common.yaml into this file and remove the need for two jobs.
4242
release_with_bcr:
43-
if: ${{ env.publish_to_bcr == 'true' }}
43+
if: ${{ publish_to_bcr == 'true' }}
4444
uses: ./.github/workflows/release_common.yaml
4545

4646
permissions:
@@ -53,15 +53,15 @@ jobs:
5353
# Pass the inputs from the manual trigger to the reusable workflow.
5454
with:
5555
version: ${{ github.event.inputs.version }}
56-
publish_to_sonatype: ${{ env.publish_to_sonatype }}
57-
continue_if_tag_exists: ${{ env.continue_if_tag_exists }}
56+
publish_to_sonatype: ${{ publish_to_sonatype}}
57+
continue_if_tag_exists: ${{ continue_if_tag_exists' }}
5858
publish_to_bcr: true
5959

6060
# Allow the reusable workflow to access the secrets.
6161
secrets: inherit
6262

6363
release_without_bcr:
64-
if: ${{ env.publish_to_bcr == 'false' }}
64+
if: ${{ publish_to_bcr == 'false' }}
6565
uses: ./.github/workflows/release_common.yaml
6666

6767
permissions:
@@ -71,8 +71,8 @@ jobs:
7171
# Pass the inputs from the manual trigger to the reusable workflow.
7272
with:
7373
version: ${{ github.event.inputs.version }}
74-
publish_to_sonatype: ${{ env.publish_to_sonatype }}
75-
continue_if_tag_exists: ${{ env.continue_if_tag_exists }}
74+
publish_to_sonatype: ${{ publish_to_sonatype}}
75+
continue_if_tag_exists: ${{ continue_if_tag_exists }}
7676
publish_to_bcr: false
7777

7878
# Allow the reusable workflow to access the secrets.

0 commit comments

Comments
 (0)