Use yetibot 20231222.221011.bcac18b #115
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: | |
- master | |
paths: | |
- charts/yetibot/Chart.yaml | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# must fetch all history so that CR can compare latest tag to current | |
# commit. otherwise it will skip releasing, e.g.: | |
# > Looking up latest tag... | |
# > Discovering changed charts since '5018edb0c13cd99925cbfc417f78433eb3fc26af'... | |
# > Nothing to do. No chart changes detected. | |
# from https://github.com/yetibot/yetibot-helm/runs/1353828038 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
# Note: this will fail unless app version was bumped | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
env: | |
CR_TOKEN: "${{ secrets.CR_TOKEN }}" |