From 034f05a340bc5955d1c6c3e44727ff579b61fe00 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Fri, 24 Jun 2022 08:33:00 +0530 Subject: Fix GH action workflow for publishing homebrew cask --- .github/workflows/homebrew-cask-updates.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.github/workflows/homebrew-cask-updates.yml') diff --git a/.github/workflows/homebrew-cask-updates.yml b/.github/workflows/homebrew-cask-updates.yml index 2e6e0f058..77f4adb4a 100644 --- a/.github/workflows/homebrew-cask-updates.yml +++ b/.github/workflows/homebrew-cask-updates.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Publish nightly uses: macauley/action-homebrew-bump-cask@v1 - if: contains(${{ github.event.release.tag_name }}, "nightly") + if: contains(${{ github.event.release.tag_name }}, 'nightly') with: # Required, custom GitHub access token with only the 'public_repo' scope enabled token: ${{ secrets.HOMEBREW_FERDIUM_PUBLISH_TOKEN }} @@ -24,7 +24,7 @@ jobs: dryrun: false - name: Publish beta uses: macauley/action-homebrew-bump-cask@v1 - if: contains(${{ github.event.release.tag_name }}, "beta") + if: contains(${{ github.event.release.tag_name }}, 'beta') with: # Required, custom GitHub access token with only the 'public_repo' scope enabled token: ${{ secrets.HOMEBREW_FERDIUM_PUBLISH_TOKEN }} @@ -36,7 +36,7 @@ jobs: dryrun: false - name: Publish release uses: macauley/action-homebrew-bump-cask@v1 - if: ${{ !contains(github.event.release.tag_name, "nightly") && !contains(github.event.release.tag_name, "beta") }} + if: ${{ !contains(github.event.release.tag_name, 'nightly') && !contains(github.event.release.tag_name, 'beta') }} with: # Required, custom GitHub access token with only the 'public_repo' scope enabled token: ${{ secrets.HOMEBREW_FERDIUM_PUBLISH_TOKEN }} -- cgit v1.2.3-70-g09d2