1
mirror of https://github.com/CarmJos/UserPrefix.git synced 2024-09-19 20:15:47 +00:00
1. 修复示例config中yaml格式错误的问题
2. 更改构建方式,分开构建与部署的工作流。
This commit is contained in:
carm 2021-10-19 10:40:02 +08:00
parent dfe447393e
commit 32df1de83d
2 changed files with 10 additions and 12 deletions

View File

@ -24,19 +24,10 @@ jobs:
distribution: 'adopt'
cache: maven
server-id: github
# Nexus用户名环境变量
server-username: MAVEN_USERNAME
# Nexus密码环境变量
server-password: MAVEN_TOKEN
- name: "Package & Deploy"
- name: "Deploy"
run: mvn -B deploy --file pom.xml
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: "Stage"
run: mkdir staging && cp target/*.jar staging
- name: "Upload artifact"
uses: actions/upload-artifact@v2
with:
name: artifact
path: staging
MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}}

View File

@ -20,9 +20,16 @@ jobs:
with:
java-version: '11'
distribution: 'adopt'
cache: maven
server-id: github
server-username: MAVEN_USERNAME
server-password: MAVEN_TOKEN
- name: "Package"
run: mvn -B package --file pom.xml
- name: "Stage"
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: "Target Stage"
run: mkdir staging && cp target/*.jar staging
- name: "Upload artifact"
uses: actions/upload-artifact@v2