Skip to content

Merge pull request #1429 from webauthn4j/catch-up-fido-conformance-te… #652

Merge pull request #1429 from webauthn4j/catch-up-fido-conformance-te…

Merge pull request #1429 from webauthn4j/catch-up-fido-conformance-te… #652

Workflow file for this run

name: Doc
on:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
java_version: [17]
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure git
run: |
git submodule init
git submodule update
git config --local user.email "mail@ynojima.net"
git config --local user.name "ynojima"
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java_version }}
- name: Build with Gradle
run: |
./gradlew javadoc generateReferenceJA generateReferenceEN
- name: Commit & Push pages
run: |
rm -rf docs
mv build/docs/asciidoc docs
git add docs
git commit -m "Update docs"
git checkout -b gh-pages
git push origin gh-pages -f