✨ Refactor: Add b64 function to convert file to base64 in testacc_set… #1267
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: Compile Binaries | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- "release/**" | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
types: ['opened', 'synchronize'] | ||
paths: | ||
- '**.go' | ||
- go.mod | ||
- '.github/workflows/**' | ||
paths-ignore: | ||
- '**_test.go' | ||
env: | ||
GOPROXY: https://proxy.golang.org,direct | ||
GO_VERSION: "1.22" | ||
jobs: | ||
compile: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v5 | ||
with: | ||
version: latest | ||
args: release --rm-dist --skip-publish --snapshot --skip-sign |