Skip to content

Commit fea274f

Browse files
authored
ci: fix version output interpolation in make-version workflow (#4220)
1 parent 7bc1121 commit fea274f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/make-version.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ jobs:
4545
release-type: ${{ github.event.inputs.release-type }}
4646
- name: Update user agent version
4747
run: |
48-
VERSION=$(${{ steps.version-n-changelog.outputs.new-version }})
49-
echo -e "// this file is auto generated, do not modify\nexport const PT_VERSION = '$VERSION';" > packages/commons/src/version.ts
48+
echo -e "// this file is auto generated, do not modify\nexport const PT_VERSION = '${{ steps.version-n-changelog.outputs.new-version }}';" > packages/commons/src/version.ts
5049
- name: Stage changes
5150
run: git add .
5251
- name: Create PR

0 commit comments

Comments
 (0)