Skip to content

Build and push the APSViz UI/V3 Docker image tagged with "latest" and version number #9

Build and push the APSViz UI/V3 Docker image tagged with "latest" and version number

Build and push the APSViz UI/V3 Docker image tagged with "latest" and version number #9

Workflow file for this run

# Copyright (c) 2024, The University of North Carolina at Chapel Hill All rights reserved.
# SPDX-FileCopyrightText: 2022 Renaissance Computing Institute. All rights reserved.
#
# SPDX-License-Identifier: BSD 3-Clause
name: Build and push the APSViz UI/V3 Docker image tagged with "latest" and version number
# trigger event is publishing a release in the repo
on:
release:
types: [published]
# working parameters that are specific to this script
env:
REGISTRY: containers.renci.org/eds/apsviz-ui-v3
# job definition
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
# job steps
steps:
# checkout the codebase
- name: Checkout
uses: actions/checkout@v1
# connect to the renci image registry
- name: Login to containers.renci.org
uses: docker/login-action@v2
with:
registry: containers.renci.org
username: ${{ secrets.USER }}
password: ${{ secrets.PW }}
# get the tag for the image
- name: Get the version
id: get_version
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
# build and push the image. The docker v3 action automatically handles the git checkout.
- name: Build/Push the image to the registry
uses: docker/build-push-action@v3
with:
push: true
build-args: |
APP_VERSION=${{ steps.get_version.outputs.VERSION }}
APP_GS_DATA_URL=${{ secrets.GS_DATA_URL }}
APP_UI_DATA_URL=${{ secrets.UI_DATA_URL }}
APP_UI_DATA_TOKEN=${{ secrets.TOKEN }}
tags: |
${{ env.REGISTRY }}:latest
${{ env.REGISTRY }}:${{ steps.get_version.outputs.VERSION }}