aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-06-18 22:20:28 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-06-18 22:20:28 +0530
commit793d5bade05e87fd3269dfbfdd90601ba91eade9 (patch)
treec39d1eb90a74c6dd01a87fbfec0017598e5af86b /.github
parentAdd ability to set the progressbar color from the Settings screen (diff)
downloadferdium-app-793d5bade05e87fd3269dfbfdd90601ba91eade9.tar.gz
ferdium-app-793d5bade05e87fd3269dfbfdd90601ba91eade9.tar.zst
ferdium-app-793d5bade05e87fd3269dfbfdd90601ba91eade9.zip
Add GH workflow to publish to the homebrew-ferdium repo when a new tag is pushed in this repo [skip ci]
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/homebrew-cask-updates.yml19
1 files changed, 19 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..ed38031bd
--- /dev/null
+++ b/.github/workflows/homebrew-cask-updates.yml
@@ -0,0 +1,19 @@
1name: bump-ferdium-casks
2on:
3 release:
4 types: [published]
5
6jobs:
7 bump-casks:
8 runs-on: macos-latest
9 steps:
10 - uses: macauley/action-homebrew-bump-cask@v1
11 with:
12 # Required, custom GitHub access token with only the 'public_repo' scope enabled
13 token: ${{secrets.HOMEBREW_FERDIUM_PUBLISH_TOKEN}}
14 # Bump all outdated casks in this tap
15 tap: ferdium/homebrew-ferdium
16 # Bump only these casks if outdated
17 cask: ferdium-nightly,ferdium-beta
18 # livecheck: true
19 dryrun: false