Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Merge pull request #13 from furusax0621/dependabot/github_actions/gor… #8

Merge pull request #13 from furusax0621/dependabot/github_actions/gor…

Merge pull request #13 from furusax0621/dependabot/github_actions/gor… #8

Workflow file for this run

name: build
on:
push:
branches: main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Build
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --snapshot --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}