From 32780f34a4e995873bf7e7d1e5d59bc26c4d43df Mon Sep 17 00:00:00 2001 From: songyinyin Date: Wed, 25 Oct 2023 11:14:44 +0800 Subject: [PATCH] test github action v13 --- .github/workflows/jar_release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/jar_release.yml b/.github/workflows/jar_release.yml index 03460e6e..15e5b5d9 100644 --- a/.github/workflows/jar_release.yml +++ b/.github/workflows/jar_release.yml @@ -50,22 +50,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 ./../ - name: Archive zip (neutrino-proxy-server) uses: thedoctor0/zip-release@master with: type: 'zip' - path: 'neutrino-proxy-server/target/neutrino-proxy-server' + path: 'neutrino-proxy-server' filename: neutrino-proxy-server-${{ matrix.os }}.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 ./../ - name: Archive zip (neutrino-proxy-client) uses: thedoctor0/zip-release@master with: type: 'zip' - path: 'neutrino-proxy-client/target/neutrino-proxy-client' + path: 'neutrino-proxy-client' filename: neutrino-proxy-client-${{ matrix.os }}.zip # GitHub 上创建 release - name: Release