tagged colony-agent in charts colony-v0.1.1-rc2 #33
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: colony-rc-publish | |
on: | |
push: | |
tags: | |
- 'colony-v*-rc*' | |
env: | |
ARGO_NAMESPACE: argo | |
ARGO_VERSION: v3.4.1 | |
jobs: | |
deliver-rc-chart: | |
runs-on: self-hosted | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- name: inject slug/short variables | |
uses: rlespinasse/github-slug-action@v4 | |
- name: publish colony image and chart | |
run: | | |
echo "Install argo" | |
# Download the binary | |
curl -sLO https://github.com/argoproj/argo-workflows/releases/download/${ARGO_VERSION}/argo-linux-amd64.gz | |
# Unzip | |
gunzip argo-linux-amd64.gz | |
# Make binary executable | |
chmod +x argo-linux-amd64 | |
echo "commit sha ${GITHUB_SHA}" | |
./argo-linux-amd64 version --short | |
./argo-linux-amd64 submit .argo/colony-publish-rc-chart.yaml \ | |
--generate-name="${GITHUB_REPOSITORY_NAME_PART}-set-rc-versions-${GITHUB_REF_NAME}-" \ | |
-p appName="${GITHUB_REPOSITORY_NAME_PART}" \ | |
-p branch="main" \ | |
-p gitUrlNoProtocol="[email protected]:${GITHUB_REPOSITORY_OWNER_PART_SLUG}" \ | |
-p prefix="colony-v" \ | |
-p tag="${GITHUB_REF_NAME}" \ | |
--wait --log |