Skip to content

Commit

Permalink
thanks Bash
Browse files Browse the repository at this point in the history
  • Loading branch information
amtoine committed Dec 15, 2023
1 parent 2d0e2c0 commit a8f5bec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nupm-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ jobs:
echo "target: ${{github.base_ref}}"
echo "ref: ${{github.ref}}"
if [[ ${{ github.base_ref }} == 'nightly' ]]; then
if [[ '${{ github.base_ref }}' == 'nightly' ]]; then
echo "NU_VERSION='nightly'" >> $GITHUB_ENV
echo "NUPM_REVISION='main'" >> $GITHUB_ENV
elif [[ ${{ github.ref }} == 'refs/heads/nightly' ]]; then
elif [[ '${{ github.ref }}' == 'refs/heads/nightly' ]]; then
echo "NU_VERSION='nightly'" >> $GITHUB_ENV
echo "NUPM_REVISION='main'" >> $GITHUB_ENV
else
Expand Down

0 comments on commit a8f5bec

Please sign in to comment.