mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-02-03 04:09:29 -05:00
* chore(deps): update actions/checkout action to v5 * chore: Update docs --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Martin Wentzel <nitram.wentzel@gmail.com>
33 lines
700 B
YAML
33 lines
700 B
YAML
name: Compile Binaries
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- "release/**"
|
|
tags-ignore:
|
|
- '*'
|
|
pull_request:
|
|
types: ['opened', 'synchronize']
|
|
paths:
|
|
- '**.go'
|
|
- go.mod
|
|
- '.github/workflows/**'
|
|
- '!**_test.go'
|
|
|
|
env:
|
|
GOPROXY: https://proxy.golang.org,direct
|
|
GO_VERSION: "1.22"
|
|
|
|
jobs:
|
|
compile:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- 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
|