We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current docs-deploy.yml should be rewritten to use GitHub's first-party support for publishing in GitHub Actions, like so:
docs-deploy.yml
name: Documentation on: push: branches: - main jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 # DOCS STEP HERE - name: upload docs artifact uses: actions/upload-pages-artifact@v1 with: path: ./html/ deploy: needs: build runs-on: ubuntu-latest permissions: # NOTE: Needed to push to the repository. pages: write id-token: write environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} steps: - id: deployment uses: actions/deploy-pages@v2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The current
docs-deploy.yml
should be rewritten to use GitHub's first-party support for publishing in GitHub Actions, like so:The text was updated successfully, but these errors were encountered: