Skip to content

Merge branch 'main' of https://github.com/flowerinthenight/oomkill-watch #42

Merge branch 'main' of https://github.com/flowerinthenight/oomkill-watch

Merge branch 'main' of https://github.com/flowerinthenight/oomkill-watch #42

Workflow file for this run

---
name: main
on:
push:
branches: [ main ]
tags: ['*']
pull_request:
branches: [ main ]
jobs:
build:
name: Build
if: "!contains(github.event.commits[0].message, 'ci skip')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup golang
uses: actions/setup-go@v3
with:
go-version: 1.22
- name: Build binary
run: go build -v
- name: Run goreleaser
uses: goreleaser/goreleaser-action@v3
if: startsWith(github.ref, 'refs/tags/')
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}