File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Publish Core
2+ on :
3+ push :
4+ tags :
5+ - ' v*.*.* -Core'
6+ jobs :
7+ publish-core :
8+ runs-on : ubuntu-latest
9+ permissions :
10+ contents : read
11+ packages : write
12+ steps :
13+ - uses : actions/checkout@v3
14+ - uses : actions/setup-java@v3
15+ with :
16+ java-version : ' 11'
17+ distribution : ' adopt'
18+ - name : Publish package SQLSchema2Java Core
19+ run : |
20+ cd sqlschema2java-core
21+ mvn --batch-mode deploy
22+ env :
23+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ name : Publish Maven Plugin
2+ on :
3+ push :
4+ tags :
5+ - ' v*.*.* -Plugin'
6+ jobs :
7+ publish-maven-plugin :
8+ runs-on : ubuntu-latest
9+ permissions :
10+ contents : read
11+ packages : write
12+ steps :
13+ - uses : actions/checkout@v3
14+ - uses : actions/setup-java@v3
15+ with :
16+ java-version : ' 11'
17+ distribution : ' adopt'
18+ - name : Publish package SQLSchema2Java Core
19+ run : |
20+ cd sqlschema2java-maven-plugin
21+ mvn --batch-mode deploy
22+ env :
23+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments