File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 70
70
71
71
- name : Fetch and checkout the specific commit
72
72
run : |
73
- git init processing4
73
+ git clone ${{ env.REMOTE_URL }} processing4
74
74
cd processing4
75
- git remote add origin ${{ env.REMOTE_URL }}
76
- git fetch --depth 1 origin ${{ env.commit_sha }}
77
75
git checkout ${{ env.commit_sha }}
78
76
79
77
- name : Generate Javadocs
99
97
- name : Checkout gh-pages branch
100
98
uses : actions/checkout@v3
101
99
with :
100
+ repository : processing/processing4-javadocs
102
101
ref : gh-pages
102
+ fetch-depth : 0
103
103
104
104
- name : Commit and Push changes to gh-pages if any changes exist
105
105
run : |
@@ -108,7 +108,7 @@ jobs:
108
108
if [ -n "$(git status --porcelain docs/)" ]; then
109
109
git add docs/
110
110
git commit -m "Update Javadocs"
111
- git push https://[email protected] /SableRaf/ processing-javadoc-test .git HEAD:gh-pages
111
+ git push https://[email protected] /processing/processing4-javadocs .git HEAD:gh-pages
112
112
else
113
113
echo "No changes to commit."
114
114
fi
You can’t perform that action at this time.
0 commit comments