Bumped bld to version 2.0.1

This commit is contained in:
Erik C. Thauvin 2024-07-29 17:30:00 -07:00
parent 0b24f08cb1
commit 429852371f
Signed by: erik
GPG key ID: 776702A6A2DA330E
10 changed files with 47 additions and 49 deletions

View file

@ -3,7 +3,7 @@ name: javadocs-pages
on:
# Runs on pushes targeting the default branch
push:
branches: [ "master" ]
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
@ -30,14 +30,14 @@ jobs:
steps:
- name: Checkout source repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: "zulu"
java-version: 17
- name: Build Javadocs
@ -50,8 +50,8 @@ jobs:
uses: actions/upload-pages-artifact@v1
with:
# Upload generated Javadocs repository
path: 'build/javadoc/'
path: "build/javadoc/"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v1