Skip to content

Commit

Permalink
Include pages in build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
ascopes committed Oct 14, 2024
1 parent b58bd26 commit 1dd06c0
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,19 @@ jobs:

- name: Build Pages
shell: bash
run: >-
./mvnw -B site
-DskipTests
-Dinvoker.skip
-Dcheckstyle.skip
run: |-
./mvnw -B site \
-Dmaven.test.skip \
-Dinvoker.skip \
-Dcheckstyle.skip \
-Dlicense.skip
- name: Upload generated site as artifacts
uses: actions/upload-artifact@v4
with:
name: site
path: protobuf-maven-plugin/target/site/**
compression-level: 9
retention-days: 7
include-hidden-files: true
if-no-files-found: fail

0 comments on commit 1dd06c0

Please sign in to comment.