From aace3abd6de024dba5b140b9609dbca1c39c6cb7 Mon Sep 17 00:00:00 2001 From: Ivan Date: Tue, 15 Jul 2025 13:53:26 -0500 Subject: [PATCH] update build workflow --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0b494c6..6b39878 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,16 +41,16 @@ jobs: GOARCH: ${{ matrix.goarch }} GOARM: ${{ matrix.goarch == 'arm' && '6' || '' }} run: | - output_name="arcgis-utils-go-${GOOS}-${GOARCH}" + output_name="reticulum-go-${GOOS}-${GOARCH}" if [ "$GOOS" = "windows" ]; then output_name+=".exe" fi - go build -v -ldflags="-s -w" -o "${output_name}" ./cmd/arcgis-utils + go build -v -ldflags="-s -w" -o "${output_name}" ./cmd/reticulum-go echo "Built: ${output_name}" - name: Calculate SHA256 Checksum run: | - output_name="arcgis-utils-go-${{ matrix.goos }}-${{ matrix.goarch }}" + output_name="reticulum-go-${{ matrix.goos }}-${{ matrix.goarch }}" if [ "${{ matrix.goos }}" = "windows" ]; then output_name+=".exe" fi @@ -60,8 +60,8 @@ jobs: - name: Upload Artifact uses: actions/upload-artifact@v4 with: - name: arcgis-utils-go-${{ matrix.goos }}-${{ matrix.goarch }} - path: arcgis-utils-go-${{ matrix.goos }}-${{ matrix.goarch }}* + name: reticulum-go-${{ matrix.goos }}-${{ matrix.goarch }} + path: reticulum-go-${{ matrix.goos }}-${{ matrix.goarch }}* release: name: Create Release @@ -84,4 +84,4 @@ jobs: - name: Create GitHub Release uses: softprops/action-gh-release@v2 with: - files: ./release-assets/*/* \ No newline at end of file + files: ./release-assets/*/*