🐛 Fix file URI prefix for JARs and do not move found JARs so depe… #117
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: Multiple Architecture Image Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'main' | |
- 'release-*' | |
tags: | |
- 'v*' | |
concurrency: | |
group: build-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
image-build: | |
uses: konveyor/release-tools/.github/workflows/build-push-images.yaml@main | |
with: | |
registry: "quay.io/konveyor" | |
image_name: "analyzer-lsp" | |
containerfile: "./Dockerfile" | |
pre_build_cmd: | | |
TAG=${GITHUB_REF_NAME/main/latest} | |
sed -i "s,FROM quay.io/konveyor/jdtls-server-base,FROM quay.io/konveyor/jdtls-server-base:${TAG}," Dockerfile | |
architectures: '[ "amd64", "arm64", "ppc64le", "s390x" ]' | |
secrets: | |
registry_username: ${{ secrets.QUAY_PUBLISH_ROBOT }} | |
registry_password: ${{ secrets.QUAY_PUBLISH_TOKEN }} |