Skip to content

Commit b065802

Browse files
committed
fix actions and remove rmd
1 parent 94ae862 commit b065802

File tree

2 files changed

+5
-729
lines changed

2 files changed

+5
-729
lines changed

.github/workflows/run_norm_integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,24 +67,24 @@ jobs:
6767
git config --global user.name "github-actions[bot]"
6868
git config --global user.email "github-actions[bot]@users.noreply.github.com"
6969
70-
OUTPUT_FILE="01_quality_assessment/scRNA_QC.html"
70+
OUTPUT_FILE="02_integration/norm_integration.html"
7171
7272
# Create a temporary worktree for gh-pages branch
7373
git fetch origin gh-pages || true
7474
git worktree add /tmp/gh-pages gh-pages || git worktree add /tmp/gh-pages -b gh-pages
7575
7676
# 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/
7979
8080
cd /tmp/gh-pages
8181
8282
# Commit and push if there are changes
8383
if git diff --quiet && git diff --cached --quiet; then
8484
echo "No changes to commit"
8585
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]"
8888
git push origin gh-pages
8989
fi
9090

0 commit comments

Comments
 (0)