Why Nostr? What is Njump?
2024-07-03 00:49:22

npub1nq…p8ldz on Nostr: commit 45bf542cb5c891b0a8ec84a078d4534d42818bb5 Author: randymcmillan ...

commit 45bf542cb5c891b0a8ec84a078d4534d42818bb5
Author: randymcmillan <[email protected]>
Date: Tue May 14 19:45:29 2024 -0400

.github/workflows/go-release.yml

diff --git a/.github/workflows/go-release.yml b/.github/workflows/go-release.yml
new file mode 100644
index 000000000..b52dce7e0
--- /dev/null
+++ b/.github/workflows/go-release.yml
@@ -0,0 +1,37 @@
+# .github/workflows/go-release.yaml
+name: go-release
+on:
+ push:
+ tags:
+ - '**[0-9]+.[0-9]+.[0-9]+*'
+ pull_request:
+
+permissions:
+ contents: write
+ packages: write
+
+jobs:
+ releases-matrix:
+ name: Release Go Binary
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ # build and publish in parallel: linux/386, linux/amd64, linux/arm64, windows/386, windows/amd64, darwin/amd64, darwin/arm64
+ goos: [linux, windows, darwin]
+ goarch: ["386", amd64, arm64]
+ exclude:
+ - goarch: "386"
+ goos: darwin
+ - goarch: arm64
+ goos: windows
+ steps:
+ - uses: actions/checkout@v4
+ - uses: wangyoucao577/go-release-action@v1
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ goos: ${{ matrix.goos }}
+ goarch: ${{ matrix.goarch }}
+ goversion: "https://dl.google.com/go/go1.13.1.linux-amd64.tar.gz";
+ project_path: "./go"
+ binary_name: "gnostr-go-chat"
+ extra_files: LICENSE README.md
Author Public Key
npub1nqu3vl42n3udndknnskajf0tmdugp4tyy720edvzzkhtmzj9c8lqep8ldz