Release 1.0.40 #74
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
# This workflow runs on any PRs that are targeting main, and ensures that the version in pyproject.toml is incremented | |
name: Check Version Increment | |
on: | |
pull_request: | |
branches: | |
- "main" | |
concurrency: | |
# SHA is added to the end if on `main` to let all main workflows run | |
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref == 'refs/heads/main' && github.sha || '' }} | |
cancel-in-progress: true | |
jobs: | |
check-version: | |
name: Check version increment | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clean workspace | |
uses: Chia-Network/actions/clean-workspace@main | |
- name: Checkout current branch | |
uses: actions/checkout@v3 | |
with: | |
path: branch-repo | |
- name: Checkout main | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
path: main-repo | |
- name: Install yq | |
run: pip install yq | |
- name: Check Versions | |
run: | | |
main_version=$(cat $GITHUB_WORKSPACE/main-repo/pyproject.toml | tomlq -r '.tool.poetry.version') | |
branch_version=$(cat $GITHUB_WORKSPACE/branch-repo/pyproject.toml | tomlq -r '.tool.poetry.version') | |
echo "Main version: $main_version" | |
echo "Branch version: $branch_version" | |
if [[ "$branch_version" == "$main_version" ]]; then | |
echo "Version in pyproject.toml on this branch is not changing. Version must incremenet for a merge to main" | |
exit 1 | |
fi |