mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-05 16:27:05 +00:00
32 lines
782 B
YAML
32 lines
782 B
YAML
|
name: gh-pages
|
||
|
on:
|
||
|
release:
|
||
|
types: [published, edited]
|
||
|
|
||
|
concurrency:
|
||
|
group: gh-pages
|
||
|
|
||
|
jobs:
|
||
|
update-helm-repo:
|
||
|
name: Update gh-pages helm repo index
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Install Helm
|
||
|
uses: azure/setup-helm@v3
|
||
|
with:
|
||
|
version: 3.12.3
|
||
|
|
||
|
- name: Check out repo
|
||
|
uses: actions/checkout@v4
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
|
||
|
- name: Update repo index
|
||
|
run: |
|
||
|
git config user.name "Github Actions"
|
||
|
git config user.email "no-reply@github.com"
|
||
|
./scripts/github/update-helm-repo.sh ${{ join(github.event.release.assets.*.browser_download_url, ' ') }}
|
||
|
|
||
|
- name: Push
|
||
|
run: git push -f https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} gh-pages
|