Intro and Slot 1 #1
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: Build | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
- name: Build | ||
run: mvn -B install | ||
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
- name: Site generation | ||
run: | | ||
sudo apt-get install graphviz | ||
export BASE_URL=`curl -Ls -o /dev/null -w %{url_effective} -I ${GITHUB_REPOSITORY_OWNER}.github.io` | ||
cd docs | ||
mvn package | ||
- name: Publishing fragment | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: fragments | ||
path: ./quarkus-llm-workshop/docs/target/generated-asciidoc | ||
if-no-files-found: error | ||
retention-days: 3 | ||
publication: | ||
needs: [ docs, build_java17 ] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download default site | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: fragments | ||
path: target/generated-asciidoc | ||
- name: Site assembly | ||
run: | | ||
# aggregate the fragments | ||
# Take just the contents of the variants folders for the other platforms | ||
cp -r target/generated-asciidoc/* target/generated-asciidoc | ||
cp -R target/generated-asciidoc/* target/site | ||
- name: Store PR id | ||
if: "github.event_name == 'pull_request'" | ||
run: echo ${{ github.event.number }} > ./target/site/pr-id.txt | ||
- name: Publishing directory for PR preview | ||
if: "github.event_name == 'pull_request'" | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: site | ||
path: ./target/site | ||
retention-days: 3 | ||
- name: Publication | ||
if: "github.ref_name == 'main' && (github.event_name == 'push' || github.event_name == 'schedule')" | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./target/site |