Skip to content

Commit 1add0c1

Browse files
author
Trevor Payne
committed
fix: Workflow Syntax
1 parent 3d57ac3 commit 1add0c1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/essentialsplugins-betabuilds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ jobs:
229229
shell: powershell
230230
run: |
231231
$nuspec_file = Get-ChildItem *.nuspec -recurse
232-
${{ env.NUSPECNAME }} = $($nuspec_file.BaseName)
232+
echo "NUSPECNAME=$($nuspec_file.BaseName)" >> $GITHUB_ENV
233233
echo "NUSPEC_FILE=$($nuspec_file.BaseName)"| Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
234234
- name: Download Build Version Info
235235
if: ${{ env.NUSPECNAME != 'PDT.EssentialsPluginTemplate '}}

.github/workflows/essentialsplugins-releasebuilds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
shell: powershell
178178
run: |
179179
$nuspec_file = Get-ChildItem *.nuspec -recurse
180-
${{ env.NUSPECNAME }} = $($nuspec_file.BaseName)
180+
echo "NUSPECNAME=$($nuspec_file.BaseName)" >> $GITHUB_ENV
181181
echo "NUSPEC_FILE=$($nuspec_file.BaseName)"| Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
182182
- name: Download Build Version Info
183183
if: ${{ env.NUSPECNAME != 'PDT.EssentialsPluginTemplate '}}

0 commit comments

Comments
 (0)