Skip to content

Commit

Permalink
* #38: Added a GitHub action to deploy JavaDocs. (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnastasiiaSergienko authored Apr 28, 2021
1 parent afb0319 commit 3826099
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/deploy_javadocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Automatically Deploy Javadocs

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout ️the repository
uses: actions/checkout@v2.3.1
- name: Build Javadocs
run: mvn javadoc:javadoc
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: gh-pages
folder: target/site/apidocs/
4 changes: 4 additions & 0 deletions doc/changes/changes_4.4.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,9 @@ Code Name:
* #97: Refactored functions tests.
* #93: Replaced <code> by {@code}.

## Documentation

* #38: Added a GitHub action to deploy JavaDocs.

## Dependency Updates

0 comments on commit 3826099

Please sign in to comment.