Skip to content

Bump github.com/go-kod/kod from 0.1.0 to 0.2.0 #50

Bump github.com/go-kod/kod from 0.1.0 to 0.2.0

Bump github.com/go-kod/kod from 0.1.0 to 0.2.0 #50

Workflow file for this run

name: Go
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
jobs:
build:
name: Build
runs-on: ubuntu-latest
environment: docker
strategy:
fail-fast: true
matrix:
go: ["1.21.x"]
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4.1.1
- uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}-
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
version: latest
args: release --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}