Sync Markdown line breaks with new prettier output #42
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: on push to main | |
on: | |
push: | |
branches: | |
- main | |
# Allow manually running this workflow. | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
jobs: | |
detect_changed_files: | |
name: detect changed files | |
permissions: | |
pull-requests: read | |
uses: EarthmanMuons/reusable-workflows/.github/workflows/detect-changed-files.yml@main | |
deploy_github_pages: | |
name: deploy github pages | |
permissions: | |
actions: read | |
id-token: write | |
pages: write | |
needs: detect_changed_files | |
if: |- | |
needs.detect_changed_files.outputs.rust == 'true' | |
|| github.event_name == 'workflow_dispatch' | |
uses: EarthmanMuons/reusable-workflows/.github/workflows/deploy-github-pages-rust.yml@main | |
tag_untagged_releases: | |
name: tag untagged releases | |
needs: detect_changed_files | |
if: |- | |
needs.detect_changed_files.outputs.rust == 'true' | |
|| github.event_name == 'workflow_dispatch' | |
uses: EarthmanMuons/reusable-workflows/.github/workflows/tag-untagged-releases-rust.yml@main | |
secrets: inherit |