Skip to content

Commit

Permalink
workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
insomnious committed Jul 23, 2024
1 parent 883abb1 commit e99223c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ jobs:
echo "version = $version"
echo "semver = $semver"
echo "tag = $tag"
echo "version=$version" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8
echo "semver=$semver" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8
echo "rawVersion=$version" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8
echo "semverVersion=$semver" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8
echo "tag=$tag" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8
- name: Display Version and Tag
shell: pwsh
run: |
$version = '${{ steps.extract-version.outputs.version }}'
$semver = '${{ steps.extract-version.outputs.semver }}'
$version = '${{ steps.extract-version.outputs.rawVersion }}'
$semver = '${{ steps.extract-version.outputs.semverVersion }}'
$tag = '${{ steps.extract-version.outputs.tag }}'
Write-Host "Version: $version"
Write-Host "SemVer: $semver"
Expand Down

0 comments on commit e99223c

Please sign in to comment.