Skip to content

Allow reproducible build #16

Allow reproducible build

Allow reproducible build #16

Workflow file for this run

#
# Copyright (c) 2022 Contributors to the Eclipse Foundation
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v. 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0,
# or the Eclipse Distribution License v. 1.0 which is available at
# http://www.eclipse.org/org/documents/edl-v10.php.
#
# SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
#
name: Update web site
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
paths:
- 'docs/**'
- 'www/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
cache: maven
- name: Add static content
run: |
export ANGUS_ACTIVATION_VERSION=`curl -s https://repo1.maven.org/maven2/org/eclipse/angus/angus-activation/maven-metadata.xml | tac | grep -o -m 1 "<version>[[:digit:]]\.[[:digit:]]\.[[:digit:]]</version" | cut -f 2 -d ">" | cut -f 1 -d "<" | xargs`
echo Building javadoc for Angus Activation version: $ANGUS_ACTIVATION_VERSION
export ACTIVATION_API_VERSION=`mvn -B -U -C org.apache.maven.plugins:maven-dependency-plugin:3.4.0:tree -f docs/pom.xml -Dincludes=\*:jakarta.activation-api:\* -Dangus-activation.version=$ANGUS_ACTIVATION_VERSION | grep activation-api | cut -d ':' -f 4 | xargs`
echo Activation API version: $ACTIVATION_API_VERSION
echo mvn -B -U -C -V clean install -f docs/pom.xml -Dangus-activation.version=$ANGUS_ACTIVATION_VERSION -Dactivation-api.version=$ACTIVATION_API_VERSION
mvn -B -U -C -V clean install -f docs/pom.xml -Dangus-activation.version=$ANGUS_ACTIVATION_VERSION -Dactivation-api.version=$ACTIVATION_API_VERSION
rm -rf ./www/api || true
cp -Rfv docs/target/site/* ./www/
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./www/
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1