diff --git a/.github/workflows/windows-native.yml b/.github/workflows/windows-native.yml index ad40ebfb..70d55b2d 100644 --- a/.github/workflows/windows-native.yml +++ b/.github/workflows/windows-native.yml @@ -49,24 +49,24 @@ jobs: mvn clean install -pl neutrino-proxy-core -am -DskipTests --no-transfer-progress cd neutrino-proxy-server mvn clean native:compile -P native --file pom.xml --no-transfer-progress -# cp target/neutrino-proxy-server.exe ./neutrino-proxy-server.exe + cp target/neutrino-proxy-server.exe ./../neutrino-proxy-server.exe - name: Archive zip (neutrino-proxy-server) uses: thedoctor0/zip-release@master with: type: 'zip' - path: 'target/neutrino-proxy-server.exe' + path: 'neutrino-proxy-server.exe' filename: neutrino-proxy-server-${{ matrix.os }}-${{ github.ref_name }}.zip - name: Build with Maven (neutrino-proxy-client) run: | cd neutrino-proxy-client mvn clean package --file pom.xml --no-transfer-progress mvn clean native:compile -P native --file pom.xml --no-transfer-progress -# cp target/neutrino-proxy-client.exe ./neutrino-proxy-client.exe + cp target/neutrino-proxy-client.exe ./../neutrino-proxy-client.exe - name: Archive zip (neutrino-proxy-client) uses: thedoctor0/zip-release@master with: type: 'zip' - path: 'target/neutrino-proxy-client.exe' + path: 'neutrino-proxy-client.exe' filename: neutrino-proxy-client-${{ matrix.os }}-${{ github.ref_name }}.zip # GitHub 上创建 release - name: Release