NuoDB Control Plane 2.3.2 #14
Workflow file for this run
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: Update GitHub release tag, OpenAPI spec, and Helm index | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
update_release: | |
runs-on: ubuntu-latest | |
env: | |
TAG: ${{ github.event.release.tag_name }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git user | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Update release tag and OpenAPI spec | |
run: ./scripts/update-release.sh | |
- name: Update Helm index | |
run: ./scripts/update-index.sh |