Skip to content

Add manual trigger to githubpages #11

Add manual trigger to githubpages

Add manual trigger to githubpages #11

Workflow file for this run

name: "Build"
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
- uses: gradle/gradle-build-action@v2
with:
arguments: build --scan --full-stacktrace
- name: Bundle the build report
if: failure()
run: find . -type d -name 'reports' | zip -@ -r build-reports.zip
- name: Upload the build report
if: failure()
uses: actions/upload-artifact@master
with:
name: error-report
path: build-reports.zip