Skip to content

Commit

Permalink
fix: Workflow Syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Trevor Payne committed Jul 20, 2022
1 parent 3d57ac3 commit 1add0c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/essentialsplugins-betabuilds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ jobs:
shell: powershell
run: |
$nuspec_file = Get-ChildItem *.nuspec -recurse
${{ env.NUSPECNAME }} = $($nuspec_file.BaseName)
echo "NUSPECNAME=$($nuspec_file.BaseName)" >> $GITHUB_ENV
echo "NUSPEC_FILE=$($nuspec_file.BaseName)"| Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Download Build Version Info
if: ${{ env.NUSPECNAME != 'PDT.EssentialsPluginTemplate '}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/essentialsplugins-releasebuilds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ jobs:
shell: powershell
run: |
$nuspec_file = Get-ChildItem *.nuspec -recurse
${{ env.NUSPECNAME }} = $($nuspec_file.BaseName)
echo "NUSPECNAME=$($nuspec_file.BaseName)" >> $GITHUB_ENV
echo "NUSPEC_FILE=$($nuspec_file.BaseName)"| Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Download Build Version Info
if: ${{ env.NUSPECNAME != 'PDT.EssentialsPluginTemplate '}}
Expand Down

0 comments on commit 1add0c1

Please sign in to comment.