Release edb-postgres-for-kubernetes-v0.24.0 (#189) #64
Workflow file for this run
This file contains hidden or 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-publish | |
on: | |
push: | |
tags: | |
- '*v[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
release: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Publish Helm charts | |
uses: stefanprodan/helm-gh-pages@v1.7.0 | |
with: | |
helm_version: 3.11.3 | |
token: "${{ secrets.REPO_GHA_PAT }}" | |
update-gh-pages: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.2.2 | |
with: | |
ref: gh-pages | |
fetch-depth: 0 | |
- name: Update miscellaneous files | |
run: | | |
git checkout origin/main README.md LICENSE CODEOWNERS CODE-OF-CONDUCT.md | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: EnterpriseDB Automated Updates | |
author_email: noreply@enterprisedb.com | |
message: 'chore: Automatic Update' |