chore: update workflows

This commit is contained in:
Tommy 2024-11-12 18:00:34 +01:00
parent 95de088dce
commit b6eaf6c457
Signed by: tommy
SSH key fingerprint: SHA256:1LWgQT3QPHIT29plS8jjXc3S1FcE/4oGvsx3Efxs6Uc
2 changed files with 69 additions and 11 deletions

View file

@ -0,0 +1,62 @@
name: Release Charts
on:
workflow_run:
workflows: [ "Validate Charts" ]
branches: [ main ]
types:
- completed
jobs:
charts-changed:
name: Get Charts being Changed
runs-on: ci-os
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: List changed charts
id: changed-charts
run: |
changed=$(ct --config .forgejo/ct.yaml list-changed | tr '\n' ' ' | jq -R -s -c 'split(" ") | map(select(length > 0))')
if [[ -n "$changed" ]]; then
echo "changesExist=true" >> $GITHUB_ENV
echo "::set-output name=reposChanged::$changed" # Sets output as a JSON array
fi
outputs:
reposChanged: ${{ steps.changed-charts.outputs.reposChanged }}
changesExist: ${{ env.changesExist }}
helm-publish:
name: "Publish Helm Chart"
needs: charts-changed
if: needs.charts-changed.outputs.changesExist == 'true'
runs-on: ci-os
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Publish
env:
FORGEJO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
charts='${{ needs.charts-changed.outputs.reposChanged }}'
export REPO=${{ github.repository }}
export RELEASE_DIR=dist
export RELEASE_NOTES=/var/ci-os/templates/release-notes-template.md
export SHA=${{ github.sha }}
export FORGEJO_TOKEN="${{ secrets.GITHUB_TOKEN }}"
for chart in $(echo $charts | jq -r '.[]'); do
rm -rf dist || true
mkdir dist || true
echo "packing $chart"
helm package "$chart" -d dist
CHART_NAME=$(yq -r .name "$chart/Chart.yaml")
CHART_VERSION=$(yq -r .version "$chart/Chart.yaml")
export TAG="$CHART_NAME-$CHART_VERSION"
echo "$TAG"
forgejo-release create
done

View file

@ -1,16 +1,18 @@
name: Validate Chart
name: Validate Charts
on:
pull_request:
paths:
- 'charts/**'
push:
branches:
- 'main'
paths:
- 'charts/**'
jobs:
charts-changed:
name: Get Charts being Changed
runs-on: flakes-action
runs-on: ci-os
steps:
- name: Checkout
uses: actions/checkout@v4
@ -33,7 +35,7 @@ jobs:
name: "Lint"
needs: charts-changed
if: needs.charts-changed.outputs.changesExist == 'true'
runs-on: flakes-action
runs-on: ci-os
steps:
- name: Checkout
uses: actions/checkout@v4
@ -51,7 +53,7 @@ jobs:
name: "Audit"
needs: charts-changed
if: needs.charts-changed.outputs.changesExist == 'true'
runs-on: flakes-action
runs-on: ci-os
steps:
- name: Checkout
uses: actions/checkout@v4
@ -73,7 +75,7 @@ jobs:
name: "Outdated APIs"
needs: charts-changed
if: needs.charts-changed.outputs.changesExist == 'true'
runs-on: flakes-action
runs-on: ci-os
steps:
- name: Checkout
uses: actions/checkout@v4
@ -86,9 +88,3 @@ jobs:
echo "Checking deprecated apiVersions for $repo"
helm template "$repo" -f "$repo/ci/pluto-values.yaml" | pluto detect - --ignore-deprecations
done
#with:
# FORGEJO_API_URL=https://code.252.no/api/v1
# FORGEJO_TOKEN=123
# REPO_OWNER=tommy
# REPO_NAME=charts
# ISSUE_INDEX=115