We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afcf946 commit e5fabeeCopy full SHA for e5fabee
.github/workflows/make.yml
@@ -46,8 +46,8 @@ jobs:
46
- name: Set version
47
run: |
48
$content = Get-Content -Path "package.json"
49
- $content = $content -replace '"version": "\..*"', '"version": "' + $VERSION + '"'
50
- Set-Content -Path "package.json" -Value $content
+ $newContent = $content -replace '"version": "\..*"', '"version": "' + $VERSION + '"'
+ Set-Content -Path "package.json" -Value $newContent
51
52
- name: Install dependencies with Yarn
53
run: yarn install
0 commit comments