Fix unique guess unique remote ip #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release James binaries | |
on: | |
release: | |
types: [created] | |
jobs: | |
releases-matrix: | |
name: Release Go Binary | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# build and publish in parallel: linux/amd64 | |
goos: [linux] | |
goarch: [amd64,arm64] | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' | |
- name: Build release | |
uses: wangyoucao577/go-release-action@v1.46 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
goos: ${{ matrix.goos }} | |
goarch: ${{ matrix.goarch }} | |
project_path: "." | |
binary_name: "james" | |
extra_files: LICENSE README.md | |
sha256sum: true | |
ldflags: "-X main.Build=${{ github.ref_name }}" |