Skip to content

Commit 877aa8d

Browse files
committed
fix: correct env variable definition
1 parent 93e09d9 commit 877aa8d

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/post_release_version_bump.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ on:
88
required: true
99

1010
env:
11-
VERSION: ${{ env.VERSION }}
12-
11+
VERSION: ${{ github.event.inputs.version }}
1312
AWS_DEFAULT_REGION: us-east-1
1413

1514
permissions:

.github/workflows/pre_release_prepare.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ on:
1212
default: 'false'
1313

1414
env:
15-
VERSION: ${{ env.VERSION }}
15+
VERSION: ${{ github.event.inputs.version }}
1616
IS_PATCH: ${{ github.event.inputs.is_patch }}
17-
1817
AWS_DEFAULT_REGION: us-east-1
1918

2019
permissions:

0 commit comments

Comments
 (0)