Skip to content

Commit

Permalink
Create bump-cask.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbednarz committed Jun 28, 2023
1 parent 6093eba commit fcde47e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/bump-cask.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
on:
workflow_dispatch:
inputs:
tag-name:
description: 'The git tag name to bump the formula to'
required: true

jobs:
manual-cask-bump:
runs-on: ubuntu-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 fcde47e

Please sign in to comment.