Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #713
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_java17: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Microservices build with Maven | |
run: mvn -B install --file quarkus-workshop-super-heroes/pom.xml | |
- name: Native build with Maven | |
run: mvn -B install --file quarkus-workshop-super-heroes/pom.xml -Pnative -Dquarkus.native.container-build=true -DskipITs -pl '!:rest-narration,!:extension-version' | |
docs: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [ "all","linux","mac","windows" ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install JDK 17 | |
uses: actions/setup-java@v4 | |
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 quarkus-workshop-super-heroes/docs | |
mvn package -Dos=${{ matrix.os }} | |
- name: Publishing fragment | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.os }}-fragments | |
path: ./quarkus-workshop-super-heroes/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/[email protected] | |
with: | |
name: all-fragments | |
path: target/generated-asciidoc | |
# take the all- package to be the top-level | |
- name: Download Linux site | |
uses: actions/[email protected] | |
with: | |
name: linux-fragments | |
path: target/generated-asciidoc/linux | |
- name: Download Mac site | |
uses: actions/[email protected] | |
with: | |
name: mac-fragments | |
path: target/generated-asciidoc/mac | |
- name: Download Windows site | |
uses: actions/[email protected] | |
with: | |
name: windows-fragments | |
path: target/generated-asciidoc/windows | |
- name: Site assembly | |
run: | | |
# aggregate the fragments | |
# Take just the contents of the variants folders for the other platforms | |
cp -r target/generated-asciidoc/linux/variants/* target/generated-asciidoc/variants | |
cp -r target/generated-asciidoc/mac/variants/* target/generated-asciidoc/variants | |
cp -r target/generated-asciidoc/windows/variants/* target/generated-asciidoc/variants | |
# Move things around to preserve the super-heroes structure | |
mkdir -p target/site/super-heroes | |
cp -R target/generated-asciidoc/* target/site/super-heroes | |
# Move the redirect.html page to the root | |
cp target/generated-asciidoc/redirect.html target/site/index.html | |
- 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 |