diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc00e4d6..e41af6c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: # Docker - name: Login to Container Registry uses: docker/login-action@v3 - if: ${{ github.ref_type == 'tag' || github.ref_name == 'master' || github.ref_name == 'quarkus' }} + if: ${{ github.ref_type == 'tag' || github.ref_name == 'master' }} with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -105,27 +105,6 @@ jobs: platforms: linux/amd64,linux/arm64/v8 tags: athou/commafeed:master-${{ matrix.database }}-jvm - ## quarkus branch - remove when merged into master, also remove the condition in the login step - - name: Docker build and push quarkus - native - uses: docker/build-push-action@v6 - if: ${{ github.ref_name == 'quarkus' }} - with: - context: . - file: commafeed-server/src/main/docker/Dockerfile.native - push: true - platforms: linux/amd64 - tags: athou/commafeed:quarkus-${{ matrix.database }} - - - name: Docker build and push quarkus - jvm - uses: docker/build-push-action@v6 - if: ${{ github.ref_name == 'quarkus' }} - with: - context: . - file: commafeed-server/src/main/docker/Dockerfile.jvm - push: true - platforms: linux/amd64,linux/arm64/v8 - tags: athou/commafeed:quarkus-${{ matrix.database }}-jvm - build-windows: runs-on: windows-latest strategy: