Skip to content

Commit

Permalink
feat: bump workflow now supports manual run with an optional ZITADEL …
Browse files Browse the repository at this point in the history
…version

Invoke this workflow manually when you want to create an updated Helm chart. If you pass in a ZITADEL release tag, then that is the version the new chart will use, otherwise the chart will automatically refer to the latest version.
  • Loading branch information
rud committed Aug 22, 2024
1 parent cb8e548 commit 54f47ff
Showing 1 changed file with 50 additions and 7 deletions.
57 changes: 50 additions & 7 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ name: Bump Version
on:
repository_dispatch:
types:
- zitadel-released
- zitadel-released
workflow_dispatch:
inputs:
tag:
description: 'ZITADEL Tag'
required: false

permissions:
contents: write
Expand All @@ -16,6 +21,44 @@ jobs:
contents: write
pull-requests: write
steps:
- name: Validate the manually given input tag, if any
if: ${{github.event_name == 'workflow_dispatch'}}
id: check-input
run: |
INPUT=${{github.event.inputs.tag}}
if ! [[ ${INPUT} =~ ^v[0-9]+\.[0-9]+\.[0-9]+ ]]; then
echo "supplied invalid version number: ${INPUT}!"
echo "must be of schema: vX.X.X"
exit 1
fi
echo "::set-output name=input::${INPUT}"
- name: Get Latest ZITADEL Release Version
id: latest-tag
uses: oprypin/find-latest-tag@v1
with:
repository: zitadel/zitadel
releases-only: true
# ignore prereleases
regex: '^v([0-9]+)\.([0-9]+)\.([0-9]+)$'

- name: Decide on Target ZITADEL Version
id: target-zitadel-version
run: |
INPUT=${{ steps.check-input.outputs.input }}
LATEST=${{ steps.latest-tag.outputs.tag }}
TARGET_ZITADEL_VERSION=${INPUT:-${LATEST}}
echo "input tag: ${INPUT}"
echo "latest tag: ${LATEST}"
echo "going to target zitadel version: ${TARGET_ZITADEL_VERSION}"
echo "::set-output name=tag::${TAG}"
- name: Parse Target ZITADEL Version into Major, Minor, Patch
id: parsed-target-zitadel-version
uses: booxmedialtd/ws-action-parse-semver@v1
with:
input_string: ${{ steps.target-zitadel-version.outputs.tag }}

- id: checkout
uses: actions/checkout@v3
with:
Expand All @@ -40,18 +83,18 @@ jobs:
echo "Chart Version: ${{ steps.current-chart-version.outputs.data }}"
echo "ZITADEL Version: ${{ steps.current-zitadel-version.outputs.data }}"
- name: Parse Last ZITADEL Version
- name: Parse Currently ZITADEL Version into Major, Minor, Patch
id: parsed-last-zitadel-version
uses: booxmedialtd/ws-action-parse-semver@v1
with:
input_string: ${{ steps.current-zitadel-version.outputs.data }}

- name: Set Version Type
- name: Set Version Update Type
id: set-version-type
run: |
[ ${{ github.event.client_payload.semanticoutputs.new_release_patch_version }} -gt ${{ steps.parsed-last-zitadel-version.outputs.patch }} ] && echo '::set-output name=type::PATCH' || true
[ ${{ github.event.client_payload.semanticoutputs.new_release_minor_version }} -gt ${{ steps.parsed-last-zitadel-version.outputs.minor }} ] && echo '::set-output name=type::MINOR' || true
[ ${{ github.event.client_payload.semanticoutputs.new_release_major_version }} -gt ${{ steps.parsed-last-zitadel-version.outputs.major }} ] && echo '::set-output name=type::MAJOR' || true
[ ${{ steps.parsed-target-zitadel-version.outputs.patch }} -gt ${{ steps.parsed-last-zitadel-version.outputs.patch }} ] && echo '::set-output name=type::PATCH' || true
[ ${{ steps.parsed-target-zitadel-version.outputs.minor }} -gt ${{ steps.parsed-last-zitadel-version.outputs.minor }} ] && echo '::set-output name=type::MINOR' || true
[ ${{ steps.parsed-target-zitadel-version.outputs.major }} -gt ${{ steps.parsed-last-zitadel-version.outputs.major }} ] && echo '::set-output name=type::MAJOR' || true
- name: Bump Chart Version
uses: jessicalostinspace/[email protected]
Expand All @@ -65,7 +108,7 @@ jobs:
with:
valueFile: 'charts/zitadel/Chart.yaml'
propertyPath: 'appVersion'
value: ${{ github.event.client_payload.semanticoutputs.new_release_version }}
value: ${{ steps.target-zitadel-version.outputs.tag }}
updateFile: true
commitChange: false
createPR: false
Expand Down

0 comments on commit 54f47ff

Please sign in to comment.