aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-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 }}