Skip to content

Bump github.com/alecthomas/kingpin/v2 from 2.3.2 to 2.4.0 #2

Bump github.com/alecthomas/kingpin/v2 from 2.3.2 to 2.4.0

Bump github.com/alecthomas/kingpin/v2 from 2.3.2 to 2.4.0 #2

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Test
run: go test -v ./...
- name: Build
run: go build -v .
- name: Install
run: go install -v github.com/processone/ejabberd-api/cmd/ejabberd@master
- name: Run goreleaser in release mode
if: success() && startsWith(github.ref, 'refs/tags/v')
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}