Skip to content

Commit 403cff2

Browse files
committed
Fix syntax error
1 parent 2b3a5e8 commit 403cff2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pre-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Assign input version
1717
if: github.event.inputs.version != null
18-
run: echo "RELEASE_VERSION=${{ github.event.inputs.version }}"" >> $GITHUB_ENV
18+
run: echo "RELEASE_VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV
1919

2020
- uses: actions/github-script@v3
2121
if: github.event.inputs.version == null
@@ -33,7 +33,7 @@ jobs:
3333
3434
- name: Assign candidate version
3535
if: success()
36-
run: echo "RELEASE_VERSION=${{ steps.candidate-version.outputs.result }}"" >> $GITHUB_ENV
36+
run: echo "RELEASE_VERSION=${{ steps.candidate-version.outputs.result }}" >> $GITHUB_ENV
3737

3838
- name: Set up JDK 8
3939
uses: actions/setup-java@v1

0 commit comments

Comments
 (0)