We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54d6f1d commit d86d966Copy full SHA for d86d966
script/release
@@ -1,4 +1,14 @@
1
#!/bin/sh
2
+#
3
+# This script will generate a release on github/lfs-test-server.
4
+# Ensure that you've bumped version in main.go, then run the script.
5
+# The script does the following
6
+# * Ensure the build succeeds (and pulls the version from the build)
7
+# * Ensure the tests pass
8
+# * Cross compiles for supported platforms
9
+# * Creates the release on github/lfs-test-server
10
+# * Uploads binary assets to the release.
11
+
12
13
go build -o lfs-test-server
14
rc=$?; if [[ $rc != 0 ]]; then echo "Build failed."; exit $rc; fi
0 commit comments