Skip to content

Commit 2dbf181

Browse files
committed
fix: Update release workflow to use clickgraph binary name
1 parent e8191ce commit 2dbf181

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
run: |
9797
mkdir -p dist/${{ matrix.name }}
9898
tar -C target/${{ matrix.target }}/release -czf \
99-
dist/${{ matrix.name }}/brahmand-${{ matrix.name }}.tar.gz brahmand
99+
dist/${{ matrix.name }}/clickgraph-${{ matrix.name }}.tar.gz clickgraph
100100
tar -C target/${{ matrix.target }}/release -czf \
101101
dist/${{ matrix.name }}/brahmand-client-${{ matrix.name }}.tar.gz brahmand-client
102102
@@ -107,14 +107,14 @@ jobs:
107107
# Ensure output directory exists
108108
New-Item -ItemType Directory -Path dist/${{ matrix.name }} -Force | Out-Null
109109
# Use PowerShell Compress-Archive to create ZIPs
110-
Compress-Archive -Path target/${{ matrix.target }}/release/brahmand.exe -DestinationPath dist/${{ matrix.name }}/brahmand-${{ matrix.name }}.zip -Force
110+
Compress-Archive -Path target/${{ matrix.target }}/release/clickgraph.exe -DestinationPath dist/${{ matrix.name }}/clickgraph-${{ matrix.name }}.zip -Force
111111
Compress-Archive -Path target/${{ matrix.target }}/release/brahmand-client.exe -DestinationPath dist/${{ matrix.name }}/brahmand-client-${{ matrix.name }}.zip -Force
112112
113-
- name: Upload brahmand binary
113+
- name: Upload clickgraph binary
114114
uses: softprops/action-gh-release@v2
115115
with:
116116
# upload_url: ${{ needs.create_release.outputs.upload_url }}
117-
files: dist/${{ matrix.name }}/brahmand-${{ matrix.name }}.*
117+
files: dist/${{ matrix.name }}/clickgraph-${{ matrix.name }}.*
118118
env:
119119
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
120120

0 commit comments

Comments
 (0)