We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bd9147 commit a6eaed3Copy full SHA for a6eaed3
.goreleaser.yml
@@ -0,0 +1,16 @@
1
+builds:
2
+- main: ./cmd/oras
3
+ binary: ./bin/oras
4
+ env:
5
+ - CGO_ENABLED=0
6
+ goos:
7
+ - darwin
8
+ - linux
9
+ - windows
10
+ goarch:
11
+ - amd64
12
+
13
+archive:
14
+ format: tar.gz
15
+ files:
16
+ - LICENSE
BUILDING.md
@@ -0,0 +1,13 @@
+# Developer Guide
+## Cutting a new release
+Use [goreleaser](https://goreleaser.com/):
+Example of releasing `v0.1.0`:
+```
+git tag -a v0.1.0 -m "Release v0.1.0"
+git push origin v0.1.0
+goreleaser
0 commit comments