aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-06-25 10:39:56 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-06-25 10:39:56 +0530
commitc65992cbba966bc9dfd7ac5e3ae8c392da0a0632 (patch)
tree9ab22892856b7b9bd9e84d26d056cad01ba36232 /.github
parent6.0.0-nightly.77 [skip ci] (diff)
downloadferdium-app-c65992cbba966bc9dfd7ac5e3ae8c392da0a0632.tar.gz
ferdium-app-c65992cbba966bc9dfd7ac5e3ae8c392da0a0632.tar.zst
ferdium-app-c65992cbba966bc9dfd7ac5e3ae8c392da0a0632.zip
Fix homebrew cask update workflow condition
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/homebrew-cask-updates.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/homebrew-cask-updates.yml b/.github/workflows/homebrew-cask-updates.yml
index 77f4adb4a..eaecc0b2c 100644
--- a/.github/workflows/homebrew-cask-updates.yml
+++ b/.github/workflows/homebrew-cask-updates.yml
@@ -12,7 +12,7 @@ jobs:
12 steps: 12 steps:
13 - name: Publish nightly 13 - name: Publish nightly
14 uses: macauley/action-homebrew-bump-cask@v1 14 uses: macauley/action-homebrew-bump-cask@v1
15 if: contains(${{ github.event.release.tag_name }}, 'nightly') 15 if: ${{ contains(github.event.release.tag_name, 'nightly') }}
16 with: 16 with:
17 # Required, custom GitHub access token with only the 'public_repo' scope enabled 17 # Required, custom GitHub access token with only the 'public_repo' scope enabled
18 token: ${{ secrets.HOMEBREW_FERDIUM_PUBLISH_TOKEN }} 18 token: ${{ secrets.HOMEBREW_FERDIUM_PUBLISH_TOKEN }}
@@ -24,7 +24,7 @@ jobs:
24 dryrun: false 24 dryrun: false
25 - name: Publish beta 25 - name: Publish beta
26 uses: macauley/action-homebrew-bump-cask@v1 26 uses: macauley/action-homebrew-bump-cask@v1
27 if: contains(${{ github.event.release.tag_name }}, 'beta') 27 if: ${{ contains(github.event.release.tag_name, 'beta') }}
28 with: 28 with:
29 # Required, custom GitHub access token with only the 'public_repo' scope enabled 29 # Required, custom GitHub access token with only the 'public_repo' scope enabled
30 token: ${{ secrets.HOMEBREW_FERDIUM_PUBLISH_TOKEN }} 30 token: ${{ secrets.HOMEBREW_FERDIUM_PUBLISH_TOKEN }}