aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/homebrew-cask-updates.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/homebrew-cask-updates.yml')
-rw-r--r--.github/workflows/homebrew-cask-updates.yml74
1 files changed, 37 insertions, 37 deletions
diff --git a/.github/workflows/homebrew-cask-updates.yml b/.github/workflows/homebrew-cask-updates.yml
index eaecc0b2c..0d70868dd 100644
--- a/.github/workflows/homebrew-cask-updates.yml
+++ b/.github/workflows/homebrew-cask-updates.yml
@@ -8,41 +8,41 @@ on:
8 8
9jobs: 9jobs:
10 bump-casks: 10 bump-casks:
11 runs-on: macos-latest 11 runs-on: macos-12
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 }}
19 # Bump all outdated casks in this tap 19 # Bump all outdated casks in this tap
20 tap: ferdium/homebrew-ferdium 20 tap: ferdium/homebrew-ferdium
21 # Bump only these casks if outdated 21 # Bump only these casks if outdated
22 cask: ferdium-nightly 22 cask: ferdium-nightly
23 livecheck: true 23 livecheck: true
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 }}
31 # Bump all outdated casks in this tap 31 # Bump all outdated casks in this tap
32 tap: ferdium/homebrew-ferdium 32 tap: ferdium/homebrew-ferdium
33 # Bump only these casks if outdated 33 # Bump only these casks if outdated
34 cask: ferdium-beta 34 cask: ferdium-beta
35 livecheck: true 35 livecheck: true
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 }}
43 # Bump all outdated casks in this tap 43 # Bump all outdated casks in this tap
44 tap: ferdium/homebrew-ferdium 44 tap: ferdium/homebrew-ferdium
45 # Bump only these casks if outdated 45 # Bump only these casks if outdated
46 cask: ferdium 46 cask: ferdium
47 livecheck: true 47 livecheck: true
48 dryrun: false 48 dryrun: false