Skip to content

fix go mod finally

fix go mod finally #14

Workflow file for this run

name: Release EasyAuthCLI
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
release-cli:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "^1.18.3"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --rm-dist
workdir: .
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}