Skip to content

Use yetibot 20240125.203053.efca046 #121

Use yetibot 20240125.203053.efca046

Use yetibot 20240125.203053.efca046 #121

Workflow file for this run

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 }}"