Update downloads.adoc #44
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
# Builds the site | |
# | |
# This job builds the website for pull requests to ensure that the PR does not break the build | |
name: Build Site | |
# Conditions necessary to trigger a build | |
on: | |
pull_request: | |
jobs: | |
build-site: | |
name: Build Site | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Build Site | |
run: | | |
mvn clean compile |