update md #50
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
# name: CI | |
# on: | |
# push: | |
# branches: [ master ] | |
# jobs: | |
# # push-image: | |
# # name: Push Docker image | |
# # runs-on: ubuntu-latest | |
# # steps: | |
# # - uses: actions/checkout@v2 | |
# # - name: Set up JDK 17 | |
# # uses: actions/setup-java@v2 | |
# # with: | |
# # java-version: '17' | |
# # distribution: 'temurin' | |
# # - name: Build Image with Maven | |
# # run: | | |
# # cd limon-server | |
# # mvn -B -Dmaven.test.skip=true spring-boot:build-image -Ddocker.image-name=aircjm/limon:latest -Ddocker.username=${{ secrets.DOCKER_USERNAME }} -Ddocker.password=${{ secrets.DOCKER_PASSWORD }} | |
# push-native-image: | |
# name: Push Docker native image | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Set up JDK 17 | |
# uses: actions/setup-java@v2 | |
# with: | |
# java-version: '17' | |
# distribution: 'temurin' | |
# - name: Build Image with Maven | |
# run: | | |
# cd limon-server | |
# mvn -B -Dmaven.test.skip=true -Pnative spring-boot:build-image |