v1.7.0.1 #39
Workflow file for this run
This file contains hidden or 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: Bump VIPB Verison | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| update_vipb_version: | |
| name: Update VIPB Verison on Release | |
| runs-on: self-hosted | |
| if: false # Workflow disabled - remove this line to re-enable | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.GH_REPO_TOKEN }} | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.10" | |
| - name: Update VIPB Verison | |
| run: python ${{runner.workspace}}\grpc-labview\build-it\update_vipb_version.py --library_version ${{github.ref_name}} | |
| continue-on-error: false | |
| - name: Commit VIPB library version bump | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: VIPB version bump | |
| branch: master | |
| file_pattern: "*vipb" | |
| push_options: "--force" |