File tree Expand file tree Collapse file tree 2 files changed +5
-729
lines changed Expand file tree Collapse file tree 2 files changed +5
-729
lines changed Original file line number Diff line number Diff line change @@ -67,24 +67,24 @@ jobs:
67
67
git config --global user.name "github-actions[bot]"
68
68
git config --global user.email "github-actions[bot]@users.noreply.github.com"
69
69
70
- OUTPUT_FILE="01_quality_assessment/scRNA_QC .html"
70
+ OUTPUT_FILE="02_integration/norm_integration .html"
71
71
72
72
# Create a temporary worktree for gh-pages branch
73
73
git fetch origin gh-pages || true
74
74
git worktree add /tmp/gh-pages gh-pages || git worktree add /tmp/gh-pages -b gh-pages
75
75
76
76
# Copy the file to the worktree
77
- mkdir -p /tmp/gh-pages/01_quality_assessment
78
- cp "$OUTPUT_FILE" /tmp/gh-pages/01_quality_assessment /
77
+ mkdir -p /tmp/gh-pages/02_integration
78
+ cp "$OUTPUT_FILE" /tmp/gh-pages/02_integration /
79
79
80
80
cd /tmp/gh-pages
81
81
82
82
# Commit and push if there are changes
83
83
if git diff --quiet && git diff --cached --quiet; then
84
84
echo "No changes to commit"
85
85
else
86
- git add 01_quality_assessment/scRNA_QC .html
87
- git commit -m "Deploy scRNA_QC .html [skip ci]"
86
+ git add 02_integration/norm_integration .html
87
+ git commit -m "Deploy norm_integration .html [skip ci]"
88
88
git push origin gh-pages
89
89
fi
90
90
You can’t perform that action at this time.
0 commit comments