aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-06-24 08:33:00 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-06-24 08:33:33 +0530
commit034f05a340bc5955d1c6c3e44727ff579b61fe00 (patch)
tree5eb9b4cee3080deac56faf1bd405b15192c49ce1 /.github/workflows
parent6.0.0-nightly.75 [skip ci] (diff)
downloadferdium-app-034f05a340bc5955d1c6c3e44727ff579b61fe00.tar.gz
ferdium-app-034f05a340bc5955d1c6c3e44727ff579b61fe00.tar.zst
ferdium-app-034f05a340bc5955d1c6c3e44727ff579b61fe00.zip
Fix GH action workflow for publishing homebrew cask
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/homebrew-cask-updates.yml6
1 files changed, 3 insertions, 3 deletions
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:
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 }}
@@ -36,7 +36,7 @@ jobs:
36 dryrun: false 36 dryrun: false
37 - name: Publish release 37 - name: Publish release
38 uses: macauley/action-homebrew-bump-cask@v1 38 uses: macauley/action-homebrew-bump-cask@v1
39 if: ${{ !contains(github.event.release.tag_name, "nightly") && !contains(github.event.release.tag_name, "beta") }} 39 if: ${{ !contains(github.event.release.tag_name, 'nightly') && !contains(github.event.release.tag_name, 'beta') }}
40 with: 40 with:
41 # Required, custom GitHub access token with only the 'public_repo' scope enabled 41 # Required, custom GitHub access token with only the 'public_repo' scope enabled
42 token: ${{ secrets.HOMEBREW_FERDIUM_PUBLISH_TOKEN }} 42 token: ${{ secrets.HOMEBREW_FERDIUM_PUBLISH_TOKEN }}