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 113edab commit a26c148Copy full SHA for a26c148
.github/workflows/build-and-deploy-javadoc.yml
@@ -114,3 +114,21 @@ jobs:
114
fi
115
env:
116
PAT_TOKEN: ${{ secrets.PAT_TOKEN }}
117
+
118
+ deploy-javadoc:
119
+ runs-on: ubuntu-latest
120
+ needs: commit-javadoc
121
122
+ steps:
123
+ - name: Checkout gh-pages branch
124
+ uses: actions/checkout@v3
125
+ with:
126
+ repository: processing/processing4-javadocs
127
+ ref: gh-pages
128
+ fetch-depth: 0
129
130
+ - name: Deploy to GitHub Pages
131
+ uses: peaceiris/actions-gh-pages@v3
132
133
+ github_token: ${{ secrets.GITHUB_TOKEN }}
134
+ publish_dir: ./docs
0 commit comments