|
63 | 63 | GOOS=linux GOARCH=amd64 go build -o /app/releases/bin/gomorse_\${VERSION}_linux_amd64 /app/main.go && \ |
64 | 64 | GOOS=linux GOARCH=arm64 go build -o /app/releases/bin/gomorse_\${VERSION}_linux_arm64 /app/main.go && \ |
65 | 65 | GOOS=windows GOARCH=amd64 go build -o /app/releases/bin/gomorse_\${VERSION}_windows_amd64.exe /app/main.go && \ |
66 | | - GOOS=darwin GOARCH=amd64 go build -o /app/releases/bin/gomorse_\${VERSION}_darwin_amd64 /app/main.go" |
| 66 | + GOOS=darwin GOARCH=amd64 go build -o /app/releases/bin/gomorse_\${VERSION}_darwin_amd64 /app/main.go && \ |
| 67 | + GOOS=darwin GOARCH=arm64 go build -o /app/releases/bin/gomorse_\${VERSION}_darwin_arm64 /app/main.go \ |
| 68 | + " |
67 | 69 |
|
68 | 70 | |
69 | 71 | |
@@ -99,21 +101,21 @@ jobs: |
99 | 101 | uses: softprops/action-gh-release@v1 |
100 | 102 | with: |
101 | 103 | tag_name: ${{ steps.get_tag.outputs.TAG }} |
102 | | - name: GoMorse ${{ steps.get_tag.outputs.TAG }} |
| 104 | + name: gomorse ${{ steps.get_tag.outputs.TAG }} |
103 | 105 | body: | |
104 | | - # GoMorse Release ${{ steps.get_tag.outputs.TAG }} |
| 106 | + # gomorse Release ${{ steps.get_tag.outputs.TAG }} |
105 | 107 | |
106 | 108 | ## Changes |
107 | 109 | ${{ steps.changelog.outputs.CHANGELOG }} |
108 | 110 | |
109 | 111 | ## Installation |
110 | 112 | |
111 | 113 | ### Client Binaries |
112 | | - - Linux (AMD64): `akoflow-client_${{ steps.get_version.outputs.VERSION }}_linux_amd64` |
113 | | - - Linux (ARM64): `akoflow-client_${{ steps.get_version.outputs.VERSION }}_linux_arm64` |
114 | | - - Windows (AMD64): `akoflow-client_${{ steps.get_version.outputs.VERSION }}_windows_amd64.exe` |
115 | | - - macOS (AMD64): `akoflow-client_${{ steps.get_version.outputs.VERSION }}_darwin_amd64` |
116 | | - - macOS (ARM64): `akoflow-client_${{ steps.get_version.outputs.VERSION }}_darwin_arm64` |
| 114 | + - Linux (AMD64): `gomorse_${{ steps.get_version.outputs.VERSION }}_linux_amd64` |
| 115 | + - Linux (ARM64): `gomorse_${{ steps.get_version.outputs.VERSION }}_linux_arm64` |
| 116 | + - Windows (AMD64): `gomorse_${{ steps.get_version.outputs.VERSION }}_windows_amd64.exe` |
| 117 | + - macOS (AMD64): `gomorse_${{ steps.get_version.outputs.VERSION }}_darwin_amd64` |
| 118 | + - macOS (ARM64): `gomorse_${{ steps.get_version.outputs.VERSION }}_darwin_arm64` |
117 | 119 | |
118 | 120 | Download the appropriate binary for your platform, make it executable, and add it to your PATH. |
119 | 121 |
|
|
0 commit comments