-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added swagger profile explicitly to build workflow
- Loading branch information
1 parent
c5f93a5
commit 396400a
Showing
2 changed files
with
8 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,11 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 17 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
java-version: '21' | ||
|
||
- name: Get current project meta | ||
id: meta | ||
|
@@ -23,15 +23,13 @@ jobs: | |
- name: Build Docker images with Maven | ||
run: | | ||
mvn clean package -B -Dstyle.color=always \ | ||
-P dockerDeps,dockerPublishWithLatest \ | ||
-P swagger,dockerDeps,dockerPublishWithLatest \ | ||
-pl :flowable-app-rest \ | ||
-Ddocker.publisher.user=${{ secrets.DOCKER_USER }} \ | ||
-Ddocker.publisher.password=${{ secrets.DOCKER_PASSWORD }} | ||
- name: Install cosign | ||
uses: sigstore/cosign-installer@d6a3abf1bdea83574e28d40543793018b6035605 | ||
with: | ||
cosign-release: 'v1.7.1' | ||
- name: Install Cosign | ||
uses: sigstore/[email protected] | ||
|
||
- name: Write signing key to disk | ||
run: echo "${{ secrets.SIGNING_SECRET }}" > cosign.key | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters