Skip to content

bump to v2.1.46

bump to v2.1.46 #4

Workflow file for this run

on:
push:
branches:
- master
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- "go.work"
- "Makefile"
- ".github/workflows/nightly-build.yml"
pull_request:
types: [opened, synchronize, reopened]
branches:
- master
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- "go.work"
- "Makefile"
- ".github/workflows/nightly-build.yml"
name: nightly-build
jobs:
build:
# strategy:
# fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ^1.23.1
- name: Checkout code
uses: actions/checkout@v4
- name: Build
run: |
make V=1 release -j$(nproc)