Skip to content

Merge pull request #666 from cloudflare/dependabot/github_actions/act… #1734

Merge pull request #666 from cloudflare/dependabot/github_actions/act…

Merge pull request #666 from cloudflare/dependabot/github_actions/act… #1734

Workflow file for this run

name: Compile
on:
push:
branches:
- main
tags:
- "*"
pull_request:
branches:
- main
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20.5
cache: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Docker Login
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Compile binaries
uses: goreleaser/goreleaser-action@v4
with:
args: build --snapshot --clean --single-target
- name: Release binaries
if: startsWith(github.ref, 'refs/tags/')
uses: goreleaser/goreleaser-action@v4
with:
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}