Skip to content

Commit 0baee99

Browse files
committed
πŸ‘·β€β™‚οΈ Fix incorrect output syntax
1 parent d2e89dd commit 0baee99

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

β€Ž.github/workflows/ci.ymlβ€Ž

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
with:
3131
path: |
3232
node_modules
33+
.vscode-test
3334
key: ${{ runner.os }}-node-${{ hashFiles('pnpm-lock.yaml') }}
3435

3536
- name: βž• Dependencies
@@ -40,11 +41,13 @@ jobs:
4041
- name: πŸ” Get Calendar Version
4142
id: version
4243
run: |
44+
git config --global --add safe.directory $PWD
45+
dir env:
4346
[string]$version = & .github\Get-CalendarVersion.ps1 -MergeBuild
4447
"Calculated Version: $version"
45-
$ENV:GITHUB_OUTPUT = "version=$version"
46-
$ENV:GITHUB_OUTPUT = "calendarVersion=$version"
47-
$ENV:GITHUB_OUTPUT = "semanticVersion=$version"
48+
"version=$version" >> $ENV:GITHUB_OUTPUT
49+
"calendarVersion=$version" >> $ENV:GITHUB_OUTPUT
50+
"semanticVersion=$version" >> $ENV:GITHUB_OUTPUT
4851
4952
- name: πŸ‘·β€β™‚οΈ Build
5053
run: |
@@ -64,3 +67,5 @@ jobs:
6467
with:
6568
version: '${{steps.version.outputs.version}}'
6669
prerelease: true
70+
tag: 'v${{steps.version.outputs.version}}'
71+

0 commit comments

Comments
Β (0)