Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Build CLI and attach to GitHub release' | |
on: | |
release: | |
types: [ published ] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: 'Build CLI and attach to GitHub release' | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repo | |
- name: 'Checkout' | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# Setup Go | |
- name: 'Setup Go' | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.21' | |
# Print Go version | |
- run: go version | |
# Build and release | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v3 | |
with: | |
version: latest | |
args: release --parallelism 2 --rm-dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
homebrew: | |
name: "Bump Homebrew formula" | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: mislav/bump-homebrew-formula-action@v2 | |
with: | |
# A PR will be sent to github.com/Homebrew/homebrew-core to update this formula: | |
formula-name: atmos | |
formula-path: Formula/a/atmos.rb | |
env: | |
COMMITTER_TOKEN: ${{ secrets.GH_BOT_TOKEN }} |