Skip to content

Commit

Permalink
Merge branch 'master' into generate-lb-country-region-pop-pool-configs
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbednarz committed Jun 29, 2023
2 parents 685ebf9 + 6ec6dda commit 13e352d
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/bump-cask.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Bump homebrew-cask

on:
workflow_dispatch:
inputs:
tag-name:
description: 'The git tag name to bump the formula to'
required: true

jobs:
manual-cask-bump:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Extract version
id: extract-version
run: |
printf "::set-output name=%s::%s\n" tag-name "${GITHUB_REF#refs/tags/}"
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Bump cf-terraforming cask in cloudflare/homebrew-cloudflare
uses: macauley/action-homebrew-bump-cask@v1
with:
token: ${{ secrets.BUMP_CASK_TOKEN }}
tap: cloudflare/homebrew-cloudflare
cask: cf-terraforming
livecheck: true
dryrun: false

0 comments on commit 13e352d

Please sign in to comment.