Skip to content

Commit 32e4b3c

Browse files
committed
fix: Update release workflow to use clickgraph-client binary name
1 parent 6a39942 commit 32e4b3c

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
@@ -98,7 +98,7 @@ jobs:
9898
tar -C target/${{ matrix.target }}/release -czf \
9999
dist/${{ matrix.name }}/clickgraph-${{ matrix.name }}.tar.gz clickgraph
100100
tar -C target/${{ matrix.target }}/release -czf \
101-
dist/${{ matrix.name }}/brahmand-client-${{ matrix.name }}.tar.gz brahmand-client
101+
dist/${{ matrix.name }}/clickgraph-client-${{ matrix.name }}.tar.gz clickgraph-client
102102
103103
- name: Package artifacts (Windows)
104104
if: runner.os == 'Windows'
@@ -108,7 +108,7 @@ jobs:
108108
New-Item -ItemType Directory -Path dist/${{ matrix.name }} -Force | Out-Null
109109
# Use PowerShell Compress-Archive to create ZIPs
110110
Compress-Archive -Path target/${{ matrix.target }}/release/clickgraph.exe -DestinationPath dist/${{ matrix.name }}/clickgraph-${{ matrix.name }}.zip -Force
111-
Compress-Archive -Path target/${{ matrix.target }}/release/brahmand-client.exe -DestinationPath dist/${{ matrix.name }}/brahmand-client-${{ matrix.name }}.zip -Force
111+
Compress-Archive -Path target/${{ matrix.target }}/release/clickgraph-client.exe -DestinationPath dist/${{ matrix.name }}/clickgraph-client-${{ matrix.name }}.zip -Force
112112
113113
- name: Upload clickgraph binary
114114
uses: softprops/action-gh-release@v2
@@ -118,10 +118,10 @@ jobs:
118118
env:
119119
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
120120

121-
- name: Upload brahmand-client binary
121+
- name: Upload clickgraph-client binary
122122
uses: softprops/action-gh-release@v2
123123
with:
124124
# upload_url: ${{ needs.create_release.outputs.upload_url }}
125-
files: dist/${{ matrix.name }}/brahmand-client-${{ matrix.name }}.*
125+
files: dist/${{ matrix.name }}/clickgraph-client-${{ matrix.name }}.*
126126
env:
127127
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)