-
-
Notifications
You must be signed in to change notification settings - Fork 10.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump h2 version to 2.x, consistent with springboot
- Loading branch information
Showing
54 changed files
with
570 additions
and
374 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
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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: Publish Docker Image | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'version' | ||
required: true | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
apollo-config-tags: ${{ steps.check-tags.outputs.apollo-config-tags }} | ||
apollo-admin-tags: ${{ steps.check-tags.outputs.apollo-admin-tags }} | ||
apollo-portal-tags: ${{ steps.check-tags.outputs.apollo-portal-tags }} | ||
steps: | ||
- id: check-tags | ||
name: Check tags | ||
run: | | ||
if [[ ${{ github.event.inputs.version }} == *-SNAPSHOT ]]; then | ||
echo "apollo-config-tags=apolloconfig/apollo-configservice:${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT | ||
echo "apollo-admin-tags=apolloconfig/apollo-adminservice:${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT | ||
echo "apollo-portal-tags=apolloconfig/apollo-portal:${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT | ||
else | ||
echo "apollo-config-tags=apolloconfig/apollo-configservice:${{ github.event.inputs.version }},apolloconfig/apollo-configservice:latest" >> $GITHUB_OUTPUT | ||
echo "apollo-admin-tags=apolloconfig/apollo-adminservice:${{ github.event.inputs.version }},apolloconfig/apollo-adminservice:latest" >> $GITHUB_OUTPUT | ||
echo "apollo-portal-tags=apolloconfig/apollo-portal:${{ github.event.inputs.version }},apolloconfig/apollo-portal:latest" >> $GITHUB_OUTPUT | ||
fi | ||
publish: | ||
needs: check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 8 | ||
- name: Build package | ||
run: ./scripts/build.sh | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USER_NAME }} | ||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Build and push apollo-configservice | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: ./apollo-configservice/target | ||
platforms: linux/amd64,linux/arm64 | ||
file: ./apollo-configservice/src/main/docker/Dockerfile | ||
push: true | ||
build-args: VERSION=${{ github.event.inputs.version }} | ||
tags: ${{ needs.check.outputs.apollo-config-tags }} | ||
- name: Build and push apollo-adminservice | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: ./apollo-adminservice/target | ||
platforms: linux/amd64,linux/arm64 | ||
file: ./apollo-adminservice/src/main/docker/Dockerfile | ||
push: true | ||
build-args: VERSION=${{ github.event.inputs.version }} | ||
tags: ${{ needs.check.outputs.apollo-admin-tags }} | ||
- name: Build and push apollo-portal | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: ./apollo-portal/target | ||
platforms: linux/amd64,linux/arm64 | ||
file: ./apollo-portal/src/main/docker/Dockerfile | ||
push: true | ||
build-args: VERSION=${{ github.event.inputs.version }} | ||
tags: ${{ needs.check.outputs.apollo-portal-tags }} |
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
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
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
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
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
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
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
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
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
Oops, something went wrong.