Skip to content

Commit 113edab

Browse files
committed
Refactor Javadoc deployment workflow to use git clone and update repository references
1 parent b6ac80c commit 113edab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-and-deploy-javadoc.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,8 @@ jobs:
7070
7171
- name: Fetch and checkout the specific commit
7272
run: |
73-
git init processing4
73+
git clone ${{ env.REMOTE_URL }} processing4
7474
cd processing4
75-
git remote add origin ${{ env.REMOTE_URL }}
76-
git fetch --depth 1 origin ${{ env.commit_sha }}
7775
git checkout ${{ env.commit_sha }}
7876
7977
- name: Generate Javadocs
@@ -99,7 +97,9 @@ jobs:
9997
- name: Checkout gh-pages branch
10098
uses: actions/checkout@v3
10199
with:
100+
repository: processing/processing4-javadocs
102101
ref: gh-pages
102+
fetch-depth: 0
103103

104104
- name: Commit and Push changes to gh-pages if any changes exist
105105
run: |
@@ -108,7 +108,7 @@ jobs:
108108
if [ -n "$(git status --porcelain docs/)" ]; then
109109
git add docs/
110110
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
112112
else
113113
echo "No changes to commit."
114114
fi

0 commit comments

Comments
 (0)