Skip to content

Commit

Permalink
refactor: support camunda generation release name
Browse files Browse the repository at this point in the history
Signed-off-by: Ahmed AbouZaid <6760103+aabouzaid@users.noreply.github.com>
  • Loading branch information
aabouzaid committed May 14, 2024
1 parent 079a43d commit 46039c3
Show file tree
Hide file tree
Showing 4 changed files with 157 additions and 52 deletions.
150 changes: 150 additions & 0 deletions .github/workflows/release-generation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,150 @@
name: "Release - Generation"

on:
# release:
# types: [created]
push:
branches:
- distro-255-aa-fix-release-workflow

env:
# Example: 8.4+gen1
RELEASE_NAME: 8.4.1

jobs:
release_script:
runs-on: ubuntu-latest
name: Build release script
steps:
# GHA doesn't support checking env vars outside the steps (checked on: 20240514).
- name: Early exit
run: |
echo "${RELEASE_NAME}" | grep '+' || (
gh run cancel ${{ github.run_id }}
gh run watch ${{ github.run_id }}
)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.20"

- name: Build
working-directory: ./release-notes-fetcher
run: go build

- name: Generate token for Camunda GitHub org
id: generate-camunda-github-token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Generate token for Camunda Cloud GitHub org
id: generate-camunda-cloud-github-token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
repository: camunda-cloud/identity

- name: Set vars
run: |
CAMUNDA_VERSION="$(echo ${RELEASE_NAME} | awk -F '+' '{print $1}')"
CONFIG_FILE="release-notes-fetcher/config/release-notes-fetcher-camunda-${CAMUNDA_VERSION}.yaml"
export GLOBAL_GITREF="$(yq '.gitRef.global' ${CONFIG_FILE})"
# Generate env var from git ref for all apps.
# This will generate env vars like "ZEEBE_GITREF".
yq '.gitRef | omit(["global"]) | keys' "${CONFIG_FILE}" | sed 's/- //g' |
while read APP_NAME; do
APP_REF="$(APP_NAME=${APP_NAME} yq '.gitRef.[env(APP_NAME)] // env(GLOBAL_GITREF)' ${CONFIG_FILE})"
echo "${APP_NAME^^}_GITREF=${APP_REF}" >> "${GITHUB_ENV}"
done
- name: Run release notes script
working-directory: ./release-notes-fetcher
run: set -o pipefail; ./release-notes-fetcher | tee release_notes.txt
env:
GITHUB_CAMUNDA_ACCESS_TOKEN: ${{ steps.generate-camunda-github-token.outputs.token }}
GITHUB_CAMUNDA_CLOUD_ACCESS_TOKEN: ${{ steps.generate-camunda-cloud-github-token.outputs.token }}

- name: Login to gh repo
working-directory: ./release-notes-fetcher
run: echo ${{ steps.generate-camunda-github-token.outputs.token }} | gh auth login --with-token

- name: Edit release notes with output from script
working-directory: ./release-notes-fetcher
run: gh release edit --notes-file release_notes.txt -R camunda/camunda-platform ${RELEASE_NAME}

- name: Create temporary directory for asset download/upload
working-directory: ./release-notes-fetcher
run: mkdir -p tmp

# Tasklist binaries are uploaded to zeebes repo
- name: Download Zeebe resources
working-directory: ./release-notes-fetcher/tmp
run: >
gh release download "${ZEEBE_GITREF}"
-R camunda/zeebe
-p "zbctl"
-p "zbctl.sha1sum"
-p "zbctl.exe"
-p "zbctl.exe.sha1sum"
-p "zbctl.darwin"
-p "zbctl.darwin.sha1sum"
-p "camunda-zeebe-${ZEEBE_GITREF}.tar.gz"
-p "camunda-zeebe-${ZEEBE_GITREF}.tar.gz.sha1sum"
-p "camunda-zeebe-${ZEEBE_GITREF}.zip"
-p "camunda-zeebe-${ZEEBE_GITREF}.zip.sha1sum"
-p "camunda-tasklist-${ZEEBE_GITREF}.zip"
-p "camunda-tasklist-${ZEEBE_GITREF}.zip.sha1sum"
-p "camunda-tasklist-${ZEEBE_GITREF}.tar.gz"
-p "camunda-tasklist-${ZEEBE_GITREF}.tar.gz.sha1sum"
- name: Download Operate resources from monorepo
if: ${{ startsWith(env.RELEASE_NAME, '8.5') }}
working-directory: ./release-notes-fetcher/tmp
run: >
gh release download "operate-${OPERATE_GITREF}"
-R camunda/zeebe
-p "camunda-operate-${OPERATE_GITREF}.zip"
-p "camunda-operate-${OPERATE_GITREF}.zip.sha1sum"
-p "camunda-operate-${OPERATE_GITREF}.tar.gz"
-p "camunda-operate-${OPERATE_GITREF}.tar.gz.sha1sum"
- name: Download Operate resources
if: ${{ !startsWith(env.RELEASE_NAME, '8.5') }}
working-directory: ./release-notes-fetcher/tmp
run: >
gh release download "${OPERATE_GITREF}"
-R camunda/operate
-p "camunda-operate-${OPERATE_GITREF}.zip"
-p "camunda-operate-${OPERATE_GITREF}.zip.sha1sum"
-p "camunda-operate-${OPERATE_GITREF}.tar.gz"
-p "camunda-operate-${OPERATE_GITREF}.tar.gz.sha1sum"
- name: Login to Camunda Cloud
working-directory: ./release-notes-fetcher
run: echo ${{ steps.generate-camunda-cloud-github-token.outputs.token }} | gh auth login --with-token

- name: Download Identity resources
working-directory: ./release-notes-fetcher/tmp
run: >
gh release download "${IDENTITY_GITREF}"
-R camunda-cloud/identity
-p "camunda-identity-${IDENTITY_GITREF}.tar.gz"
-p "camunda-identity-${IDENTITY_GITREF}.tar.gz.sha1sum"
-p "camunda-identity-${IDENTITY_GITREF}.zip"
-p "camunda-identity-${IDENTITY_GITREF}.zip.sha1sum"
- name: Login back to Camunda
working-directory: ./release-notes-fetcher
run: echo ${{ steps.generate-camunda-github-token.outputs.token }} | gh auth login --with-token

- name: Upload resources
working-directory: ./release-notes-fetcher/tmp
run: gh release -R camunda/camunda-platform upload "${RELEASE_NAME}" *
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:

jobs:
release_script:
if: ! contains($GITHUB_REF_NAME, "+")
runs-on: ubuntu-latest
name: Build release script
steps:
Expand Down