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: | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
build: | |
name: "Build CLI and Attach to GitHub Release" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Setup Go | |
- name: "Setup Go" | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
# Print Go version | |
- run: go version | |
# Build and release | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
version: latest | |
args: release --parallelism 2 --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
docker: | |
name: "Build and Push Docker Image" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ vars.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: rosesecurity/terramaid:latest | |
- name: "Verify Image" | |
run: | | |
docker pull ${{ steps.build.outputs.image }}:${{ steps.build.outputs.tag}} | |
homebrew: | |
name: "Bump Homebrew Formula" | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: mislav/bump-homebrew-formula-action@v3 | |
with: | |
# A PR will be sent to github.com/Homebrew/homebrew-core to update this formula: | |
formula-name: terramaid | |
formula-path: Formula/t/terramaid.rb | |
env: | |
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }} |