Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit 58cbcc1

Browse files
author
Jeff Carter
committed
add goreleaser & badges
1 parent 8b04ac1 commit 58cbcc1

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

.github/workflows/build.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,12 @@ on:
77

88
jobs:
99
build:
10-
strategy:
11-
matrix:
12-
go-version: [1.14.x, 1.15.x]
13-
os: [ubuntu-latest]
14-
runs-on: ${{ matrix.os }}
10+
runs-on: ubuntu-latest
1511
steps:
1612
- name: Install Go
1713
uses: actions/setup-go@v2
1814
with:
19-
go-version: ${{ matrix.go-version }}
15+
go-version: 1.15
2016
- name: Checkout code
2117
uses: actions/checkout@v2
2218
with:

.goreleaser.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ builds:
1616
main: ./cmd/awsets/main.go
1717
archives:
1818
- replacements:
19-
# darwin: Darwin
20-
# linux: Linux
21-
# windows: Windows
2219
386: i386
2320
amd64: x86_64
2421
checksum:
@@ -47,7 +44,7 @@ release:
4744

4845
# If set to true, will not auto-publish the release.
4946
# Default is false.
50-
draft: true
47+
draft: false
5148

5249
# If set to auto, will mark the release as not ready for production
5350
# in case there is an indicator for this in the tag e.g. v1.0.0-rc1
@@ -63,7 +60,7 @@ release:
6360
# You can disable this pipe in order to not upload any artifacts to
6461
# GitHub.
6562
# Defaults to false.
66-
disable: true
63+
disable: false
6764

6865
# You can add extra pre-existing files to the release.
6966
# The filename on the release will be the last part of the path (base). If

0 commit comments

Comments
 (0)