Skip to content

Commit

Permalink
Fixes piranhacloud#3868 - Rework publishing of Maven plugin documenta…
Browse files Browse the repository at this point in the history
…tion to use snapshot/release similar to docs directory
  • Loading branch information
mnriem committed Aug 29, 2024
1 parent 9260322 commit 92c44ed
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .github/workflows/docs-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,38 @@ jobs:
git add .
git commit -a -m "Publishing documentation" || true
git push
maven-plugin:
needs: docs
runs-on: ubuntu-latest
steps:
- name: Checkout Piranha
uses: actions/checkout@v3
- name: Checkout Piranha Website
uses: actions/checkout@v3
with:
repository: piranhacloud/piranha-website
token: ${{ secrets.GIT_PASSWORD }}
path: piranha-website
ref: 'gh-pages'
- name: Set up Java 21
uses: actions/setup-java@v3
with:
cache: 'maven'
distribution: 'temurin'
java-version: 21
- name: Build with Maven
run: |
mvn -B -DskipTests -DskipITs -ntp install
cd maven/plugins/piranha-maven-plugin
mvn -B -DskipTests -DskipITs -ntp site
cd ../../..
rm -rf piranha-website/release/maven-plugin || true
mkdir -p piranha-website/release/maven-plugin || true
cp -R maven/plugins/piranha-maven-plugin/target/site/* piranha-website/release/maven-plugin/
cd piranha-website
git config --global user.email "noreply@piranha.cloud"
git config --global user.name "Automated publish"
git add .
git commit -a -m "Publishing Maven plugin documentation" || true
git push
38 changes: 37 additions & 1 deletion .github/workflows/docs-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
paths:
- 'docs/**'
- 'maven/**'
branches:
- 'current'
tags-ignore:
Expand Down Expand Up @@ -39,4 +40,39 @@ jobs:
git config --global user.name "Automated publish"
git add .
git commit -a -m "Publishing documentation" || true
git push
git push
maven-plugin:
needs: docs
runs-on: ubuntu-latest
steps:
- name: Checkout Piranha
uses: actions/checkout@v3
- name: Checkout Piranha Website
uses: actions/checkout@v3
with:
repository: piranhacloud/piranha-website
token: ${{ secrets.GIT_PASSWORD }}
path: piranha-website
ref: 'gh-pages'
- name: Set up Java 21
uses: actions/setup-java@v3
with:
cache: 'maven'
distribution: 'temurin'
java-version: 21
- name: Build with Maven
run: |
mvn -B -DskipTests -DskipITs -ntp install
cd maven/plugins/piranha-maven-plugin
mvn -B -DskipTests -DskipITs -ntp site
cd ../../..
rm -rf piranha-website/snapshot/maven-plugin || true
mkdir -p piranha-website/snapshot/maven-plugin || true
cp -R maven/plugins/piranha-maven-plugin/target/site/* piranha-website/snapshot/maven-plugin/
cd piranha-website
git config --global user.email "noreply@piranha.cloud"
git config --global user.name "Automated publish"
git add .
git commit -a -m "Publishing Maven plugin documentation" || true
git push

0 comments on commit 92c44ed

Please sign in to comment.