added -Dgpg.skip, fixed typos #231
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: Docker Image CI | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
VIRTUOSO_PASSWORD: ${{ secrets.VIRTUOSO_PASSWORD }} | |
steps: | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "17" | |
distribution: "corretto" | |
- name: Docker Login | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Clone local Repository | |
uses: actions/checkout@v4 | |
- name: Build the Docker images and Push to Dockerhub | |
run: bash -c ./service_config/build_images.sh | |
- name: Init update | |
uses: WSE-research/[email protected] | |
with: | |
api_key: ${{ secrets.API_KEY }} | |
updater_host: ${{ secrets.UPDATER_HOST }} |