Skip to content

Commit

Permalink
try different quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-martinsmith committed Aug 20, 2024
1 parent 5ba98b6 commit 509233b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Set Package Suffix
id: package_suffix
run: |
branch='${{ github.ref }}'
branch="${{ github.ref }}"
package_suffix=''
if [ "$branch" != "${{ env.PRIMARY_BRANCH }}" ]
Expand All @@ -59,7 +59,7 @@ jobs:
if [ "${{ github.event_name }}" == "pull_request" ]
then
should_publish=true
elif [ "${{ github.ref }}" == '${{ env.PRIMARY_BRANCH }}' ]
elif [ "${{ github.ref }}" == "${{ env.PRIMARY_BRANCH }}" ]
then
should_publish=true
fi
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
## Generate a Release and Tag in git
release:
name: Create GitHub Release
if: github.ref == '${{ env.PRIMARY_BRANCH }}' && success()
if: github.ref == "${{ env.PRIMARY_BRANCH }}" && success()

needs:
- setup
Expand Down

0 comments on commit 509233b

Please sign in to comment.