Skip to content

Release Documentation #2

Release Documentation

Release Documentation #2

Workflow file for this run

name: Release Documentation
on:
push:
tags:
- "v*.*.*"
- 'v[0-9]+.[0-9]+.[0-9]+'
create:
tags:
- "v*.*.*"
- 'v[0-9]+.[0-9]+.[0-9]+'
concurrency:
group: docs-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Checkout Helm Chart Repo"
uses: actions/checkout@v4
with:
repository: azarc-io/helm-charts
ref: refs/heads/gh-pages
path: .helm-chart-repo
token: "${{ secrets.HELM_CHARTS_TOKEN }}"
- name: "Publish The Helm Chart"
id: publish-chart
uses: ./.github/actions/chart-publish
with:
charts_dir: .helm-chart-repo
charts_url: "https://azarc-io.github.io/helm-charts"
chart: deployment/charts/gateway
- name: "Commit And Push Chart"
uses: EndBug/add-and-commit@v9
with:
author_name: Wael Jammal
author_email: wael.jammal@azarc.io
cwd: .helm-chart-repo
message: "Commit chart ${{ steps.publish-chart.outputs.chart }}"