mirror of
https://github.com/usatiuk/dhfs.git
synced 2025-10-29 04:57:48 +01:00
javadocs github pages
This commit is contained in:
28
.github/workflows/server.yml
vendored
28
.github/workflows/server.yml
vendored
@@ -47,7 +47,7 @@ jobs:
|
||||
run: cd thirdparty/lazyfs/ && ./build.sh
|
||||
|
||||
- name: Test with Maven
|
||||
run: cd dhfs-parent && mvn -T $(nproc) --batch-mode --update-snapshots package verify javadoc:aggregate
|
||||
run: cd dhfs-parent && mvn -T $(nproc) --batch-mode --update-snapshots package javadoc:aggregate
|
||||
|
||||
# - name: Build with Maven
|
||||
# run: cd dhfs-parent && mvn --batch-mode --update-snapshots package # -Dquarkus.log.category.\"com.usatiuk.dhfs\".min-level=DEBUG
|
||||
@@ -236,3 +236,29 @@ jobs:
|
||||
with:
|
||||
name: Run wrapper
|
||||
path: ~/run-wrapper.tar.gz
|
||||
|
||||
publish-javadoc:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
needs: [build-webui, build-dhfs]
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: DHFS Javadocs
|
||||
path: /tmp/dhfs-javadocs-downloaded
|
||||
|
||||
- name: Upload
|
||||
run: |
|
||||
git branch javadocs || echo "Branch exists"
|
||||
git checkout javadocs
|
||||
rm -rf *
|
||||
mv /tmp/dhfs-javadocs-downloaded/* .
|
||||
git commit -m "update javadocs"
|
||||
git push origin javadocs
|
||||
|
||||
|
||||
Reference in New Issue
Block a user