This repository has been archived by the owner on Oct 3, 2023. It is now read-only.
Merge pull request #9 from epics-containers/dev #69
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: Build and publish a beamline's ioc helm charts | |
on: | |
push: | |
pull_request: | |
env: | |
HELM_VERSION_TO_INSTALL: 3.8.2 # version of HELM to install | |
jobs: | |
build-and-push-helm-charts: | |
name: publish helm charts to ghcr.io | |
runs-on: ubuntu-latest | |
environment: prod | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: install helm | |
uses: Azure/setup-helm@v1 | |
with: | |
version: ${{ env.HELM_VERSION_TO_INSTALL }} | |
- name: push the helm chart | |
run: | | |
echo ${{ secrets.GITHUB_TOKEN }} | helm registry login ghcr.io/${{ github.repository_owner }} --username ${{ github.repository_owner }} --password-stdin | |
REGISTRY=oci://ghcr.io/epics-containers | |
# helm tags must be SemVar. Use 0.0.0-b0 for testing the latest non-tagged build | |
if [ "${GITHUB_REF_TYPE}" == "tag" ] ; then | |
TAG=${GITHUB_REF_NAME} | |
else | |
TAG="0.0.0-b0" | |
fi | |
NAME=$(sed -n '/^name: */s///p' Chart.yaml) | |
helm package -u --app-version ${TAG} --version ${TAG} . | |
PACKAGE=${NAME}-${TAG}.tgz | |
helm push "$PACKAGE" $REGISTRY |