One more deprecated plugin? ok, no problem #279
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
| # This workflow will build a Java project with Maven | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
| name: On main push perform build | |
| on: | |
| push: | |
| branches: [ main ] | |
| # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| # Allow one concurrent deployment | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: true | |
| jobs: | |
| # Build job | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: adopt | |
| java-version: 17 | |
| cache: 'maven' | |
| - name: Build with Maven | |
| run: mvn -B install --file pom.xml -Daadarchi.github.token="$TOKEN_FOR_GITHUB" -Daadarchi.gitlab.token="$TOKEN_FOR_GITLAB" | |
| env: | |
| TOKEN_FOR_GITHUB: ${{ secrets.TOKEN_FOR_GITHUB }} | |
| TOKEN_FOR_GITLAB: ${{ secrets.TOKEN_FOR_GITLAB }} | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v4.0.0 | |
| with: | |
| path: ./architecture-documentation/target/asciidoc/docs/html | |
| # Strangely, it doesn't seems to be useful | |
| # retention-days: ${{ inputs.retention-days }} | |
| # Deployment job | |
| deploy: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |