Compare commits

...
2 Commits
Author SHA1 Message Date
songyinyin 47b6a24a42 test github action v16 2023-10-25 13:10:31 +08:00
songyinyin 0095ffc65c test github action v15 name 2023-10-25 12:06:36 +08:00
2 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -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 ./../
cp target/neutrino-proxy-server ./../neutrino-proxy-server-${{ github.ref }}
- name: Archive zip (neutrino-proxy-server)
uses: thedoctor0/zip-release@master
with:
type: 'zip'
path: 'neutrino-proxy-server'
path: 'neutrino-proxy-server-${{ github.ref }}'
filename: neutrino-proxy-server-${{ matrix.os }}-${{ github.ref }}.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 ./../
cp target/neutrino-proxy-client ./../neutrino-proxy-client-${{ github.ref }}
- name: Archive zip (neutrino-proxy-client)
uses: thedoctor0/zip-release@master
with:
type: 'zip'
path: 'neutrino-proxy-client'
path: 'neutrino-proxy-client-${{ github.ref }}'
filename: neutrino-proxy-client-${{ matrix.os }}-${{ github.ref }}.zip
# GitHub 上创建 release
- name: Release
+5 -5
View File
@@ -4,7 +4,7 @@ on:
workflow_dispatch:
push:
tags:
- 'v*'
- 'vw*'
jobs:
build:
@@ -50,24 +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
xcopy target/neutrino-proxy-server ./../
xcopy target/neutrino-proxy-server ./../neutrino-proxy-server-${{ github.ref }}
- name: Archive zip (neutrino-proxy-server)
uses: thedoctor0/zip-release@master
with:
type: 'zip'
path: 'neutrino-proxy-server'
path: 'neutrino-proxy-server-${{ github.ref }}'
filename: neutrino-proxy-server-${{ matrix.os }}-${{ github.ref }}.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
xcopy target/neutrino-proxy-client ./../
xcopy target/neutrino-proxy-client ./../neutrino-proxy-client-${{ github.ref }}
- name: Archive zip (neutrino-proxy-client)
uses: thedoctor0/zip-release@master
with:
type: 'zip'
path: 'neutrino-proxy-client'
path: 'neutrino-proxy-client-${{ github.ref }}'
filename: neutrino-proxy-client-${{ matrix.os }}-${{ github.ref }}.zip
# GitHub 上创建 release
- name: Release