aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-06-18 22:12:09 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-06-18 22:12:09 +0530
commitba1c36035f0f082c6245d1936507e3a2c35884fa (patch)
treed34ca1c3f0705832943d96f3cab6df7c9a44106c
parentAdd ability to set the progressbar color from the Settings screen (diff)
downloadferdium-app-progress-bar-color.tar.gz
ferdium-app-progress-bar-color.tar.zst
ferdium-app-progress-bar-color.zip
Add GH workflow to publish to the homebrew-ferdium repo when a new tag is pushed in this repoprogress-bar-color
-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