chore(deps): update dependency org.testcontainers:testcontainers to v… #585
This file contains 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 woorflow publishes the website to GitHub Pages. | |
# It is triggered on pushes to the master branch and the website branch. | |
# The project version is determined by the latest tag. | |
# | |
# This workflow allows to deploy the website documentation to GitHub Pages, skipping | |
# the CI build. | |
# | |
name: Website | |
on: | |
push: | |
branches: | |
- "master" | |
- "website" | |
# Sets the GITHUB_TOKEN permissions 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: | |
website: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch tags | |
run: git fetch --prune --unshallow --tags | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
- name: Set up JDK 22 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '22' | |
distribution: 'zulu' | |
cache: sbt | |
- name: Install sbt | |
uses: sbt/setup-sbt@v1 | |
- name: Setup Graphviz | |
uses: ts-graphviz/setup-graphviz@v2 | |
- run: VERSION=`git describe --tags --abbrev=0 | sed "s/v//"` sbt website | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
# Upload dist repository | |
path: "target/site" | |
# Deploy job | |
deploy: | |
# Add a dependency to the build job | |
needs: website | |
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
# Deploy to the github-pages environment | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
# Specify runner + deployment step | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |