Skip to content

Commit

Permalink
feat:添加工作流
Browse files Browse the repository at this point in the history
  • Loading branch information
Shimmernight committed Jan 9, 2024
1 parent 4ec8d09 commit 13eec32
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ jobs:
echo "<settings><servers><server><id>github</id><username>${{ secrets.MAVEN_USERNAME }}</username><password>${{ secrets.MAVEN_TOKEN }}</password></server></servers></settings>" > $HOME/.m2/settings.xml
- name: Build and deploy wd-parent
run: mvn clean deploy -pl wd-parent
run: |
cd wd-parent
mvn clean deploy
- name: Build and deploy wd-common-parent
run: mvn clean deploy -pl wd-common-parent
run: |
cd ../wd-common-parent
mvn clean deploy

0 comments on commit 13eec32

Please sign in to comment.