Skip to content

Commit

Permalink
feat(lmc): release 1.0.0-ea01
Browse files Browse the repository at this point in the history
  • Loading branch information
vkumbhar94 committed Jun 29, 2022
0 parents commit 9055dec
Show file tree
Hide file tree
Showing 24 changed files with 1,878 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/gorelease.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: goreleaser

on:
push:
tags:
- '*'

jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: go.mod
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea/
21 changes: 21 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
archives:
- format: tar.gz
replacements:
amd64: x86_64
darwin: Darwin
linux: Linux
files:
- LICENSE
- README.md
- completion.yaml
builds:
- main: ./
goos:
- windows
- darwin
- linux
goarch:
- amd64
- arm64
checksum:
name_template: "{{ .ProjectName }}_checksums.txt"
Loading

0 comments on commit 9055dec

Please sign in to comment.