We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b6e75d commit b721a23Copy full SHA for b721a23
1 file changed
.github/workflows/run_visium_qc.yaml
@@ -51,3 +51,17 @@ jobs:
51
52
- name: Run quality assessment
53
run: quarto render visium/01_quality_assessment/quality_assessment.qmd
54
+
55
+ - name: Deploy HTML to gh-pages
56
+ if: success()
57
+ run: |
58
+ git config --global user.name "github-actions[bot]"
59
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
60
+ git fetch origin gh-pages || git checkout --orphan gh-pages
61
+ git switch gh-pages || git checkout -b gh-pages
62
+ mkdir -p visium/01_quality_assessment
63
+ # cp visium/01_quality_assessment/quality_assessment.html visium/01_quality_assessment/
64
+ git add visium/01_quality_assessment/quality_assessment.html
65
+ git commit -m "Deploy quality_assessment.html [skip ci]" || echo "No changes to commit"
66
+ git push origin gh-pages
67
+ shell: bash
0 commit comments