Skip to content

Commit e5fabee

Browse files
committed
1
1 parent afcf946 commit e5fabee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/make.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ jobs:
4646
- name: Set version
4747
run: |
4848
$content = Get-Content -Path "package.json"
49-
$content = $content -replace '"version": "\..*"', '"version": "' + $VERSION + '"'
50-
Set-Content -Path "package.json" -Value $content
49+
$newContent = $content -replace '"version": "\..*"', '"version": "' + $VERSION + '"'
50+
Set-Content -Path "package.json" -Value $newContent
5151
5252
- name: Install dependencies with Yarn
5353
run: yarn install

0 commit comments

Comments
 (0)