build(deps-dev): bump ts-jest from 29.1.3 to 29.1.4 in /catalog/ui #43
Workflow file for this run
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: catalog-status-publish | |
on: | |
push: | |
branches-ignore: | |
- "*" | |
tags: | |
- "catalog-status-v[0-9]*" | |
jobs: | |
publish: | |
env: | |
IMAGE_NAME: babylon-catalog-status | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Get image tags | |
id: image_tags | |
run: | | |
# Version is a semantic version tag or semantic version with release number | |
# GITHUB_REF will be of the form "refs/tags/admin-v0.1.2" or "refs/tags/admin-v0.1.2-1" | |
# To determine RELEASE, strip off the leading "refs/tags/" | |
RELEASE=${GITHUB_REF#refs/tags/catalog-status-} | |
# To determine VERSION, strip off any release number suffix | |
VERSION=${RELEASE/-*/} | |
echo "::set-output name=RELEASE::${RELEASE}" | |
echo "::set-output name=VERSION::${VERSION}" | |
# Only build image if version tag without release number | |
# Releases indicate a change in the repository that should not trigger a new build. | |
if [[ "${VERSION}" == "${RELEASE}" ]]; then | |
# Publish to latest, minor, and patch tags | |
# Ex: latest,v0.1.2,v0.1 | |
IMAGE_TAGS=( | |
'${{ secrets.REGISTRY_URI }}/${{ secrets.GPTE_REGISTRY_REPOSITORY }}/${{ env.IMAGE_NAME }}:latest' | |
"${{ secrets.REGISTRY_URI }}/${{ secrets.GPTE_REGISTRY_REPOSITORY }}/${{ env.IMAGE_NAME }}:${VERSION%.*}" | |
"${{ secrets.REGISTRY_URI }}/${{ secrets.GPTE_REGISTRY_REPOSITORY }}/${{ env.IMAGE_NAME }}:${VERSION}" | |
) | |
IMAGE_TAGS_PARTNERS=( | |
'${{ secrets.REGISTRY_URI }}/${{ secrets.GPTE_REGISTRY_REPOSITORY }}/${{ env.IMAGE_NAME }}-partners:latest' | |
"${{ secrets.REGISTRY_URI }}/${{ secrets.GPTE_REGISTRY_REPOSITORY }}/${{ env.IMAGE_NAME }}-partners:${VERSION%.*}" | |
"${{ secrets.REGISTRY_URI }}/${{ secrets.GPTE_REGISTRY_REPOSITORY }}/${{ env.IMAGE_NAME }}-partners:${VERSION}" | |
) | |
# Set IMAGE_TAGS and IMAGE_TAGS_PARTNERS output for use in next step | |
( IFS=$','; echo "::set-output name=IMAGE_TAGS::${IMAGE_TAGS[*]}" ) | |
( IFS=$','; echo "::set-output name=IMAGE_TAGS_PARTNERS::${IMAGE_TAGS_PARTNERS[*]}" ) | |
fi | |
- name: Set up buildx | |
uses: docker/setup-buildx-action@v1 | |
if: steps.image_tags.outputs.IMAGE_TAGS | |
- name: Login to redhat.io registry | |
uses: docker/login-action@v1 | |
if: steps.image_tags.outputs.IMAGE_TAGS | |
with: | |
registry: ${{ secrets.REDHAT_REGISTRY_URI }} | |
username: ${{ secrets.REDHAT_REGISTRY_USERNAME }} | |
password: ${{ secrets.REDHAT_REGISTRY_PASSWORD }} | |
- name: Login to quay.io registry | |
uses: docker/login-action@v1 | |
if: steps.image_tags.outputs.IMAGE_TAGS | |
with: | |
registry: ${{ secrets.REGISTRY_URI }} | |
username: ${{ secrets.GPTE_REGISTRY_USERNAME }} | |
password: ${{ secrets.GPTE_REGISTRY_PASSWORD }} | |
- name: Build and publish image | |
uses: docker/build-push-action@v2 | |
if: steps.image_tags.outputs.IMAGE_TAGS | |
with: | |
registry: ${{ secrets.REGISTRY_URI }} | |
context: catalog/status | |
file: catalog/status/Dockerfile | |
push: true | |
tags: ${{ steps.image_tags.outputs.IMAGE_TAGS }} |