Skip to content

Commit

Permalink
Remove hyphens from PowerShell variable
Browse files Browse the repository at this point in the history
  • Loading branch information
elzik committed Oct 31, 2023
1 parent 57971f2 commit 3fe288e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ jobs:
- name: Check for Release Requirement
id: release-check
run: |
$needs-release = (${{ github.ref_name }} -eq 'main') -or (${{ github.event.inputs.force-release }} -e 'true')
Add-Content -Path $env:GITHUB_OUTPUT -Value "needs-release=$needs-release"
$needsRelease = (${{ github.ref_name }} -eq 'main') -or (${{ github.event.inputs.force-release }} -e 'true')
Add-Content -Path $env:GITHUB_OUTPUT -Value "needs-release=$needsRelease"
shell: pwsh
- name: Tag With SemVer
id: tag
Expand Down

0 comments on commit 3fe288e

Please sign in to comment.