Skip to content

Commit c3ec8c6

Browse files
committed
chore: restore legacy binary names gpupatch-cli and gpupatch-gui
1 parent 1fc9dd1 commit c3ec8c6

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,16 @@ jobs:
5555
run: |
5656
mkdir staging
5757
# Define binaries
58-
CLI_BIN="gpupatch"
59-
GUI_BIN="companion"
58+
CLI_BIN="gpupatch-cli"
59+
GUI_BIN="gpupatch-gui"
6060
EXT=""
6161
if [ "${{ matrix.os }}" = "windows-latest" ]; then
6262
EXT=".exe"
6363
fi
6464
6565
# Copy binaries
66-
cp target/${{ matrix.target }}/release/${CLI_BIN}${EXT} ./staging/${CLI_BIN}-${{ matrix.target }}${EXT}
67-
cp target/${{ matrix.target }}/release/${GUI_BIN}${EXT} ./staging/${GUI_BIN}-${{ matrix.target }}${EXT}
68-
66+
cp target/${{ matrix.target }}/release/gpupatch${EXT} ./staging/${CLI_BIN}-${{ matrix.target }}${EXT}
67+
cp target/${{ matrix.target }}/release/companion${EXT} ./staging/${GUI_BIN}-${{ matrix.target }}${EXT}
6968
# Copy Node module
7069
cp node-module/*.node ./staging/gpupatch-node-${{ matrix.target }}.node
7170

0 commit comments

Comments
 (0)