chore: update version to 2.12.3-2024.10.24-d2f4245b5 #268
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: Create ArgoCD release | |
on: | |
push: | |
tags: | |
- "release-v**" | |
- "!release-v1.5*" | |
- "!release-v1.4*" | |
- "!release-v1.3*" | |
- "!release-v1.2*" | |
- "!release-v1.1*" | |
- "!release-v1.0*" | |
- "!release-v0*" | |
env: | |
GOLANG_VERSION: '1.22' # Note: go-version must also be set in job argocd-image.with.go-version | |
# The name of the tag as supplied by the GitHub event | |
SOURCE_TAG: ${{ github.ref }} | |
# The image namespace where Docker image will be published to | |
IMAGE_NAMESPACE: quay.io/codefresh | |
# Whether to create & push image and release assets | |
DRY_RUN: false | |
# Whether a draft release should be created, instead of public one | |
DRAFT_RELEASE: false | |
# Whether to update homebrew with this release as well | |
# Set RELEASE_HOMEBREW_TOKEN secret in repository for this to work - needs | |
# access to public repositories | |
UPDATE_HOMEBREW: false | |
# Name of the GitHub user for Git config | |
GIT_USERNAME: CI-Codefresh | |
# E-Mail of the GitHub user for Git config | |
GIT_EMAIL: [email protected] | |
jobs: | |
prepare-release: | |
name: Perform release metadata for ${{ github.ref }} | |
runs-on: ubuntu-22.04 | |
env: | |
ARTIFACT_NAME: release-notes | |
outputs: | |
TARGET_VERSION: ${{ steps.setup-vars.outputs.TARGET_VERSION }} | |
TARGET_BRANCH: ${{ steps.setup-vars.outputs.TARGET_BRANCH }} | |
PRE_RELEASE: ${{ steps.setup-vars.outputs.PRE_RELEASE }} | |
RELEASE_TAG: ${{ steps.setup-vars.outputs.RELEASE_TAG }} | |
RELEASE_NOTES: ${{ steps.release-notes.outputs.RELEASE_NOTES }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@8410ad0602e1e429cee44a835ae9f77f654a6694 # v4.0.0 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check if the published tag is well formed and setup vars | |
id: setup-vars | |
run: | | |
set -xue | |
# Target version must match major.minor.patch and optional -rcX suffix | |
# where X must be a number. | |
TARGET_VERSION=${SOURCE_TAG#*release-v} | |
# Target branch is the release branch we're going to operate on | |
# Its name is 'release-<major>.<minor>' | |
TARGET_BRANCH=release-$(echo "$TARGET_VERSION" | grep -oE '^[0-9]+\.[0-9]+') | |
# The release tag is the source tag, minus the release- prefix | |
RELEASE_TAG="${SOURCE_TAG#*release-}" | |
# Whether this is a pre-release (indicated by -rc suffix) | |
PRE_RELEASE=false | |
if echo "${RELEASE_TAG}" | egrep -- '-rc[0-9]+$'; then | |
PRE_RELEASE=true | |
fi | |
# We must not have a release trigger within the same release branch, | |
# because that means a release for this branch is already running. | |
if git tag -l | grep "release-v${TARGET_VERSION%\.[0-9]*}" | grep -v "release-v${TARGET_VERSION}"; then | |
echo "::error::Another release for branch ${TARGET_BRANCH} is currently in progress." | |
exit 1 | |
fi | |
# Ensure that release do not yet exist | |
if git rev-parse ${RELEASE_TAG}; then | |
echo "::error::Release tag ${RELEASE_TAG} already exists in repository. Refusing to continue." | |
exit 1 | |
fi | |
# Make the variables available in follow-up steps | |
echo "TARGET_VERSION=${TARGET_VERSION}" >> $GITHUB_OUTPUT | |
echo "TARGET_BRANCH=${TARGET_BRANCH}" >> $GITHUB_OUTPUT | |
echo "RELEASE_TAG=${RELEASE_TAG}" >> $GITHUB_OUTPUT | |
echo "PRE_RELEASE=${PRE_RELEASE}" >> $GITHUB_OUTPUT | |
- name: Create release notes | |
id: release-notes | |
run: | | |
set -ue | |
# Fetch all tag information as well | |
git fetch --prune --tags --force | |
echo "=========== BEGIN COMMIT MESSAGE =============" | |
git show ${SOURCE_TAG} | |
echo "============ END COMMIT MESSAGE ==============" | |
# Quite dirty hack to get the release notes from the annotated tag | |
# into a temporary file. | |
RELEASE_NOTES=$(mktemp -p /tmp release-notes.XXXXXX) | |
prefix=true | |
begin=false | |
git show ${SOURCE_TAG} | while read line; do | |
# Whatever is in commit history for the tag, we only want that | |
# annotation from our tag. We discard everything else. | |
if test "$begin" = "false"; then | |
if echo "$line" | grep -q "tag ${SOURCE_TAG#refs/tags/}"; then begin="true"; fi | |
continue | |
fi | |
if test "$prefix" = "true"; then | |
if test -z "$line"; then prefix=false; fi | |
else | |
if echo "$line" | egrep -q '^commit [0-9a-f]+'; then | |
break | |
fi | |
echo "$line" >> ${RELEASE_NOTES} | |
fi | |
done | |
# For debug purposes | |
echo "============BEGIN RELEASE NOTES=================" | |
cat ${RELEASE_NOTES} | |
echo "=============END RELEASE NOTES==================" | |
# Too short release notes are suspicious. We need at least 100 bytes. | |
relNoteLen=$(stat -c '%s' $RELEASE_NOTES) | |
# Codefresh change: disable release notes checks | |
# if test $relNoteLen -lt 100; then | |
# echo "::error::No release notes provided in tag annotation (or tag is not annotated)" | |
# exit 1 | |
# fi | |
# # Check for magic string '## Quick Start' in head of release notes | |
# if ! head -2 ${RELEASE_NOTES} | grep -iq '## Quick Start'; then | |
# echo "::error::Release notes seem invalid, quick start section not found." | |
# exit 1 | |
# fi | |
# https://github.com/github/docs/issues/21529#issue-1418590935 | |
echo "RELEASE_NOTES<<EOF" >> $GITHUB_OUTPUT | |
cat ${RELEASE_NOTES} >> $GITHUB_OUTPUT | |
echo "EOF" >> $GITHUB_OUTPUT | |
binaries: | |
name: Build Binaries for Release | |
runs-on: ubuntu-latest | |
needs: | |
- prepare-release | |
env: | |
ARTIFACT_NAME: binaries | |
outputs: | |
ARTIFACT_NAME: ${{ env.ARTIFACT_NAME }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Golang | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 | |
with: | |
go-version: ${{ env.GOLANG_VERSION }} | |
- name: Build release binaries | |
run: | | |
set -ue | |
mkdir -p dist/ | |
make release-cli | |
chmod +x ./dist/argocd-* | |
if: ${{ env.DRY_RUN != 'true' }} | |
- name: Upload binaries artifact | |
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 | |
with: | |
name: ${{ env.ARTIFACT_NAME }} | |
path: ./dist/argocd-* | |
if: ${{ env.DRY_RUN != 'true' }} | |
container-image: | |
name: Build and Push Container Images for Release | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write # Needed to create an OIDC token for keyless signing | |
needs: | |
- prepare-release | |
env: | |
TARGET_VERSION: ${{ needs.prepare-release.outputs.TARGET_VERSION }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Login to quay.io | |
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0 | |
with: | |
registry: quay.io | |
username: ${{ secrets.RELEASE_QUAY_USERNAME }} | |
password: ${{ secrets.RELEASE_QUAY_TOKEN }} | |
- uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2.2.0 | |
- uses: docker/setup-buildx-action@4c0219f9ac95b02789c1075625400b2acbff50b1 # v2.9.1 | |
- name: Build and push container image | |
id: image | |
uses: docker/build-push-action@2eb1c1961a95fc15694676618e422e8ba1d63825 #v4.1.1 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: ${{ env.DRY_RUN != 'true' }} | |
tags: ${{ env.IMAGE_NAMESPACE }}/argocd:v${{ env.TARGET_VERSION }} | |
provenance: false | |
sbom: false | |
# Cached layers will only be re-used when building the same image. This can only happen when: | |
# | |
# * The release workflow fails and is then retried. | |
# * The same release tag is deleted and then re-pushed. | |
# | |
# A global layer cache for the entire repository cannot be used. This is because in the context of runs triggered by tag pushes, | |
# runs for two different tags cannot access the same cache. Hence, we limit the cache scope to the image tag. | |
# | |
# See: https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#restrictions-for-accessing-a-cache | |
cache-from: type=gha,scope=v${{ env.TARGET_VERSION }} | |
cache-to: type=gha,mode=max,scope=v${{ env.TARGET_VERSION }} | |
- name: Install cosign | |
uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4 # v3.4.0 | |
with: | |
cosign-release: 'v2.2.3' | |
- name: Sign container image | |
run: | | |
cosign sign \ | |
-a "repo=${{ github.repository }}" \ | |
-a "workflow=${{ github.workflow }}" \ | |
-a "sha=${{ github.sha }}" \ | |
-y \ | |
"${{ env.IMAGE_NAMESPACE }}/argocd@${{ steps.image.outputs.digest }}" | |
if: ${{ env.DRY_RUN != 'true' }} | |
release: | |
name: Create Release | |
runs-on: ubuntu-latest | |
env: | |
TARGET_BRANCH: ${{ needs.prepare-release.outputs.TARGET_BRANCH }} | |
TARGET_VERSION: ${{ needs.prepare-release.outputs.TARGET_VERSION }} | |
RELEASE_TAG: ${{ needs.prepare-release.outputs.RELEASE_TAG }} | |
RELEASE_NOTES: ${{ needs.prepare-release.outputs.RELEASE_NOTES }} | |
needs: | |
- prepare-release | |
- binaries | |
- container-image | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@8410ad0602e1e429cee44a835ae9f77f654a6694 # v4.0.0 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Git author information | |
run: | | |
set -ue | |
git config --global user.email "${GIT_EMAIL}" | |
git config --global user.name "${GIT_USERNAME}" | |
- name: Checkout corresponding release branch | |
run: | | |
set -ue | |
echo "Switching to release branch '${TARGET_BRANCH}'" | |
if ! git checkout ${TARGET_BRANCH}; then | |
echo "::error::Checking out release branch '${TARGET_BRANCH}' for target version '${TARGET_VERSION}' (tagged '${RELEASE_TAG}') failed. Does it exist in repo?" | |
exit 1 | |
fi | |
- name: Create the release tag | |
run: | | |
set -ue | |
echo "Creating release ${RELEASE_TAG}" | |
git tag ${RELEASE_TAG} | |
- name: Push changes to release branch | |
run: | | |
set -ue | |
# Codefresh change | |
# git push origin ${TARGET_BRANCH} | |
git push origin ${RELEASE_TAG} | |
- name: Setup Golang | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 | |
with: | |
go-version: ${{ env.GOLANG_VERSION }} | |
- name: Generate SBOM (spdx) | |
id: spdx-builder | |
env: | |
# defines the spdx/spdx-sbom-generator version to use. | |
SPDX_GEN_VERSION: v0.0.13 | |
# defines the sigs.k8s.io/bom version to use. | |
SIGS_BOM_VERSION: v0.2.1 | |
# comma delimited list of project relative folders to inspect for package | |
# managers (gomod, yarn, npm). | |
PROJECT_FOLDERS: ".,./ui" | |
# full qualified name of the docker image to be inspected | |
DOCKER_IMAGE: ${{env.IMAGE_NAMESPACE}}/argocd:v${{env.TARGET_VERSION}} | |
run: | | |
yarn install --cwd ./ui | |
go install github.com/spdx/spdx-sbom-generator/cmd/generator@$SPDX_GEN_VERSION | |
go install sigs.k8s.io/bom/cmd/bom@$SIGS_BOM_VERSION | |
# Generate SPDX for project dependencies analyzing package managers | |
for folder in $(echo $PROJECT_FOLDERS | sed "s/,/ /g") | |
do | |
generator -p $folder -o /tmp | |
done | |
# Generate SPDX for binaries analyzing the docker image | |
if [[ ! -z $DOCKER_IMAGE ]]; then | |
bom generate -o /tmp/bom-docker-image.spdx -i $DOCKER_IMAGE | |
fi | |
cd /tmp && tar -zcf sbom.tar.gz *.spdx | |
if: ${{ env.DRY_RUN != 'true' }} | |
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: ${{ needs.binaries.outputs.ARTIFACT_NAME }} | |
- name: Release | |
id: create_release | |
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: ${{ env.RELEASE_TAG }} | |
files: | | |
argocd-* | |
/tmp/sbom.tar.gz | |
tag_name: ${{ env.RELEASE_TAG }} | |
draft: ${{ env.DRAFT_RELEASE }} | |
prerelease: ${{ needs.prepare-release.outputs.PRE_RELEASE }} | |
body_path: changelog/CHANGELOG-${{ needs.prepare-release.outputs.TARGET_VERSION }}.md | |
- name: Update homebrew formula | |
env: | |
HOMEBREW_TOKEN: ${{ secrets.RELEASE_HOMEBREW_TOKEN }} | |
uses: dawidd6/action-homebrew-bump-formula@d3667e5ae14df19579e4414897498e3e88f2f458 # v3.10.0 | |
with: | |
token: ${{env.HOMEBREW_TOKEN}} | |
formula: argocd | |
if: ${{ env.HOMEBREW_TOKEN != '' && env.UPDATE_HOMEBREW == 'true' && env.PRE_RELEASE != 'true' }} | |
- name: Delete original request tag from repository | |
run: | | |
set -ue | |
git push --delete origin ${SOURCE_TAG} | |
if: ${{ always() }} |