We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dad549 commit d175e2fCopy full SHA for d175e2f
1 file changed
.github/workflows/deploy-maven-plugin.yml
@@ -0,0 +1,23 @@
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 }}
0 commit comments