aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/homebrew-cask-updates.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/homebrew-cask-updates.yml b/.github/workflows/homebrew-cask-updates.yml
new file mode 100644
index 000000000..f36adcc62
--- /dev/null
+++ b/.github/workflows/homebrew-cask-updates.yml
@@ -0,0 +1,24 @@
1name: bump-ferdium-casks
2on:
3 push:
4 tags:
5 - '*'
6 # schedule:
7 # - cron: "0 1 * * *" # every night at 1:00 am (to allow for dependency builds to complete)
8 # # Allows you to run this workflow manually from the Actions tab
9 # workflow_dispatch:
10
11jobs:
12 bump-casks:
13 runs-on: macos-latest
14 steps:
15 - uses: macauley/action-homebrew-bump-cask@v1
16 with:
17 # Required, custom GitHub access token with only the 'public_repo' scope enabled
18 token: ${{secrets.HOMEBREW_FERDIUM_PUBLISH_TOKEN}}
19 # Bump all outdated casks in this tap
20 tap: ferdium/homebrew-ferdium
21 # Bump only these casks if outdated
22 cask: ferdium-nightly,ferdium-beta
23 # livecheck: true
24 dryrun: false