docs(xmllib): serve docstrings on docs.dasch.swiss (DEV-4298) (#1256) #1089
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: Release-Please | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
with: | |
# Do not use the default token (GITHUB_TOKEN) for this action, | |
# as any actions triggered by the user of this token will not trigger further actions | |
# (i.e. tests on the release PR and publishing to PyPI). | |
# See https://github.com/googleapis/release-please-action and | |
# https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/triggering-a-workflow#triggering-a-workflow-from-a-workflow: | |
# > "When you use the repository's GITHUB_TOKEN to perform tasks, | |
# > events triggered by the GITHUB_TOKEN will not create a new workflow run." | |
token: ${{ secrets.DASCHBOT_PAT }} | |
config-file: .github/release-please-config.json | |
manifest-file: .github/release-please-manifest.json |