Report when we could not detect the declaring parent of a target (#2885) #1037
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: Publish Docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publishDocs: | |
if: github.repository == 'com-lihaoyi/mill' && github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
env: | |
REPO_DEPLOY_KEY: ${{ secrets.REPO_DEPLOY_KEY }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: coursier/cache-action@v6 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 8 | |
distribution: temurin | |
- run: ci/publish-docs.sh |