fix deprecation #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Javadoc | |
on: | |
push: | |
branches: | |
- master | |
- feature/doc | |
tags: | |
- '*' | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
jobs: | |
javadoc: | |
concurrency: javadoc-publish | |
runs-on: ubuntu-latest | |
outputs: | |
result_hash: ${{ steps.deploy.outputs.hash }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: | | |
8 | |
11 | |
17 | |
distribution: 'temurin' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Generate Javadoc | |
run: ./gradlew --no-daemon spotlessCheck javadoc | |
- name: Deploy 🚀 | |
id: deploy | |
shell: bash | |
run: | | |
mv build/docs $RUNNER_TEMP/docs_output | |
rm build -rf | |
git checkout gh-pages | |
mkdir -p $TARGET_FOLDER | |
rm -rf $TARGET_FOLDER | |
mv $RUNNER_TEMP/docs_output $TARGET_FOLDER -v | |
git add $TARGET_FOLDER | |
if git diff --cached --exit-code > /dev/null ; then | |
echo Nothing to deploy | |
exit 0 | |
fi | |
find . -name javadoc -type d -print | sed 's#^\./\(.*\)/javadoc$#\1#' | sort --version-sort --reverse > index.txt | |
git add index.txt | |
git config user.name "${GITHUB_ACTOR}" | |
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | |
git commit -m "Deploy javadoc from ref $TARGET_FOLDER" | |
git push | |
echo "hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT | |
env: | |
TARGET_FOLDER: ${{ github.ref_name }} | |
COMMIT_AUTHOR: ${{ github.pusher.name }} | |
COMMIT_EMAIL: ${{ github.pusher.email }} |