Merge pull request #679 from pascaliske/renovate/gitlab-gitlab-ce-17.x #991
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: Release Charts | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
name: Release Charts | |
runs-on: ubuntu-latest | |
steps: | |
# checkout | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 0 | |
# setup helm | |
- uses: azure/[email protected] | |
with: | |
version: v3.8.1 | |
# setup taskfile | |
- uses: arduino/setup-task@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
# setup cache for social cards | |
- uses: actions/cache@v4 | |
with: | |
key: ${{ github.ref }} | |
path: .cache | |
# configure git | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
# deploy charts | |
- uses: helm/[email protected] | |
env: | |
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CR_SKIP_EXISTING: 'true' | |
# create pages for docs | |
- name: Create pages for docs | |
run: task docs | |
env: | |
PROD_DOMAIN: ${{ secrets.PROD_DOMAIN }} | |
# deploy docs | |
- uses: mhausenblas/mkdocs-deploy-gh-pages@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REQUIREMENTS: docs/requirements.txt |