🌱 Bump ubi9/nodejs-20 from 1-59 to 1-59.1726663413 (#2108) #65
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: ${{ vars.IMAGE_BUILD_REGISTRY || 'quay.io/konveyor' }} | |
image_name: ${{ vars.IMAGE_BUILD_IMAGE_NAME || 'tackle2-ui' }} | |
containerfile: "./Dockerfile" | |
# keep the architectures in sync with `ci-image-build.yml` | |
architectures: '[ "amd64", "arm64" ]' | |
# 2023-03-19: currently needed for npm@10 | |
extra-args: "--ulimit nofile=4096:4096" | |
secrets: | |
registry_username: ${{ secrets.QUAY_PUBLISH_ROBOT }} | |
registry_password: ${{ secrets.QUAY_PUBLISH_TOKEN }} |