Added support for transient sources (files/urls) #21
Workflow file for this run
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: Build Version Once Per PR | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
build-version: | |
name: Build version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: ./.github/actions/setup-cached-python | |
with: | |
version: "3.9" | |
- name: Bump the version number | |
run: inv update-build-number | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Bump the build number |