Merge pull request #936 from CROSSINGTUD/dependabot/maven/org.scala-l… #30
This file contains hidden or 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
| name: Documentation Deployment | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| tags: | |
| - '*' | |
| concurrency: | |
| group: gh-pages | |
| jobs: | |
| # On push/merge to develop: Deploy the current doc as default/latest | |
| deploy-doc-snapshots: | |
| name: Deploy Snapshot Documentation | |
| if: ${{ github.event_name == 'push' }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Extract Maven Version | |
| id: version | |
| run: | | |
| VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout) | |
| echo "version=$VERSION" >> $GITHUB_OUTPUT | |
| - name: Deploy Snapshot Documentation | |
| uses: secure-software-engineering/actions/documentation/handle-deployment@develop | |
| with: | |
| name: ${{ steps.version.outputs.version }} | |
| title: ${{ steps.version.outputs.version }} | |
| # On tag creation (i.e. new release): Deploy a stable version to directory with tag | |
| deploy-doc-stable: | |
| name: Deploy Stable Documentation | |
| if: startsWith(github.ref, 'refs/tags/') | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.ref }} | |
| fetch-depth: 0 | |
| - name: Deploy Stable Documentation | |
| uses: secure-software-engineering/actions/documentation/handle-deployment@develop | |
| with: | |
| name: ${{ github.ref_name }} | |
| title: ${{ github.ref_name }} | |
| stable: true |