Bump ZIO schema to 1.6.1 (#555) #456
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
name: Website | |
on: | |
push: | |
branches: | |
- 'main' | |
release: | |
types: | |
- published | |
jobs: | |
publish: | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout current branch | |
uses: actions/[email protected] | |
with: | |
fetch-depth: '0' | |
- name: Setup Java | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 17 | |
check-latest: true | |
- name: Publish the site | |
run: ./sbt docs/docusaurusPublishGhpages | |
env: | |
GIT_DEPLOY_KEY: ${{ secrets.GIT_DEPLOY_KEY }} |