Skip to content

v1.7.0.1

v1.7.0.1 #39

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"