Skip to content

Commit

Permalink
fix helm chart failure
Browse files Browse the repository at this point in the history
  • Loading branch information
AssahBismarkabah committed Nov 27, 2024
1 parent 9b40449 commit 75bdf6d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,17 @@ on:
- feat/documentation
- main

permissions:
contents: write

jobs:
deploy-docs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/feat/documentation'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python@v4
Expand All @@ -28,8 +33,16 @@ jobs:
- name: Install dependencies
run: pip install mkdocs-material[imaging]

- name: Configure Git
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
- name: Build and Deploy Documentation
run: mkdocs gh-deploy --force
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

publish-chart:
runs-on: ubuntu-latest
Expand All @@ -38,6 +51,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Publish Helm chart
uses: stefanprodan/[email protected]
with:
Expand Down

0 comments on commit 75bdf6d

Please sign in to comment.