Bump watchdog from 5.0.2 to 5.0.3 (#625) #7
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
# Auto build on push to main and PR. | |
# Not recommended to release these builds due to versioning. | |
name: Auto Build | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
push: | |
branches: | |
- main | |
- master | |
paths: | |
- "app/**" | |
- "distribute.py" | |
- "requirements*.txt" | |
permissions: {} | |
jobs: | |
pre-test: | |
permissions: | |
contents: read | |
uses: ./.github/workflows/pytest.yml | |
pre-build: | |
uses: ./.github/workflows/get_version_info.yml | |
with: | |
format_only: true | |
attested-build: | |
needs: pre-build | |
if: github.event_name != 'pull_request' | |
permissions: | |
id-token: write | |
contents: read | |
attestations: write | |
packages: write | |
uses: ./.github/workflows/build.yml | |
with: | |
version_format: ${{ needs.pre-build.outputs.version_format }} | |
attest: true | |
non-attested-build: | |
needs: pre-build | |
if: github.event_name == 'pull_request' | |
permissions: | |
id-token: write | |
contents: read | |
attestations: write | |
packages: write | |
uses: ./.github/workflows/build.yml | |
with: | |
version_format: ${{ needs.pre-build.outputs.version_format }} | |
attest: false |