aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/homebrew-cask-updates.yml
blob: f36adcc629d752feb89e303be9538f35800f6176 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: bump-ferdium-casks
on:
  push:
    tags:
      - '*'
  # schedule:
  #   - cron: "0 1 * * *" # every night at 1:00 am (to allow for dependency builds to complete)
  # # Allows you to run this workflow manually from the Actions tab
  # workflow_dispatch:

jobs:
  bump-casks:
    runs-on: macos-latest
    steps:
    - uses: macauley/action-homebrew-bump-cask@v1
      with:
        # Required, custom GitHub access token with only the 'public_repo' scope enabled
        token: ${{secrets.HOMEBREW_FERDIUM_PUBLISH_TOKEN}}
        # Bump all outdated casks in this tap
        tap: ferdium/homebrew-ferdium
        # Bump only these casks if outdated
        cask: ferdium-nightly,ferdium-beta
        # livecheck: true
        dryrun: false