Skip to content

Commit e12d4a1

Browse files
committed
Merge branch 'main' into feature/submodule-core-plugin-ex
2 parents 2c0f076 + 00fd673 commit e12d4a1

3 files changed

Lines changed: 46 additions & 50 deletions

File tree

.github/workflows/deploy-core.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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 }}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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 }}

.github/workflows/main.yml

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)