Skip to content

Commit

Permalink
fix the PR workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
perfectra1n committed May 24, 2024
1 parent e902105 commit d115d77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
run: helm dependency build charts/trilium

- name: lint helm chart
run: helm lint charts/trilium --set trilium.persistence.data.existingClaim=test-pvc
run: helm lint charts/trilium --set persistence.data.existingClaim=test-pvc

- name: prepare
run: mkdir -p charts/trilium/build
- name: create full manifest from pr head
run: helm template trilium charts/trilium --set trilium.persistence.data.existingClaim=test-pvc > charts/trilium/build/manifest.yaml
run: helm template trilium charts/trilium --set persistence.data.existingClaim=test-pvc > charts/trilium/build/manifest.yaml

- name: checkout main
uses: actions/checkout@v4
Expand All @@ -43,7 +43,7 @@ jobs:
- name: prepare
run: mkdir -p main/charts/trilium/build
- name: create full manifest from main
run: helm template trilium main/charts/trilium --set trilium.persistence.data.existingClaim=test-pvc > main/charts/trilium/build/manifest.yaml
run: helm template trilium main/charts/trilium --set persistence.data.existingClaim=test-pvc > main/charts/trilium/build/manifest.yaml

- name: create diff comment
uses: int128/diff-action@v1
Expand Down

0 comments on commit d115d77

Please sign in to comment.