Update tzdb handling (#789) #643
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
# build does not work on Java 9 or later as Java 5 is not a valid target | |
name: Build | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- 'v*' | |
- 'website*' | |
pull_request: | |
branches: | |
- 'main' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
permissions: | |
security-events: write # for github/codeql-action | |
runs-on: ubuntu-latest | |
env: | |
MAVEN_ARGS: -e -B -DtrimStackTrace=false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7 | |
- name: Set up JDK | |
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 #v4.3.0 | |
with: | |
java-version: 8 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Maven version | |
run: | | |
mvn --version | |
mkdir -p target | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@8fd294e26a0e458834582b0fe4988d79966c7c0a #codeql-bundle-v2.18.4 | |
with: | |
languages: java | |
- name: Maven build | |
run: | | |
mvn install site -B -e -ntp | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@8fd294e26a0e458834582b0fe4988d79966c7c0a #codeql-bundle-v2.18.4 | |
- name: Website | |
if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/website') || startsWith(github.ref, 'refs/tags/v')) | |
env: | |
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN_GH }} | |
run: | | |
chmod +x ./.github/website.sh | |
.github/website.sh |