Fix flaky LifeCycleTest by improving test isolation #2
Workflow file for this run
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: Manual Publish Documentation | ||
| on: | ||
| workflow_dispatch: | ||
| jobs: | ||
| build-and-publish: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| id-token: read # No OIDC needed. | ||
| contents: write # For publishing documentation. | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: CI check | ||
| uses: ./.github/actions/ci | ||
| with: | ||
| run_tests: 'false' | ||
| java_version: '11' | ||
| - uses: launchdarkly/gh-actions/actions/publish-pages@publish-pages-v1.0.1 | ||
| name: 'Publish to Github pages' | ||
| with: | ||
| docs_path: build/docs/javadoc | ||
| github_token: ${{ secrets.GITHUB_TOKEN }} | ||