Bump Versions #14910
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: Bump Versions | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
schedule: | |
- cron: '0 * * * *' # hourly | |
workflow_dispatch: | |
jobs: | |
bump-versions: | |
name: Bump Package Versions | |
runs-on: ubuntu-latest | |
container: | |
image: homebrew/brew | |
options: --user root | |
timeout-minutes: 10 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.GIT_ACCESS_TOKEN }} | |
- name: Setup homebrew and git config | |
run: | | |
mkdir /home/linuxbrew/.linuxbrew/Homebrew/Library/Taps/viamrobotics | |
ln -s $(pwd) /home/linuxbrew/.linuxbrew/Homebrew/Library/Taps/viamrobotics/homebrew-brews | |
git config --global --add safe.directory '*' | |
git config --global url."https://github.com/".insteadOf [email protected]: | |
brew developer on | |
- name: Bump viam-server | |
run: ./bump-version.sh viam-server | |
- name: Bump cartographer-module | |
run: ./bump-version.sh cartographer-module | |
- name: Bump rplidar-module | |
run: ./bump-version.sh rplidar-module | |
- name: Bump orb-slam3-module | |
run: ./bump-version.sh orb-slam3-module | |
- name: Bump canon | |
run: ./bump-version.sh canon | |
- name: Bump viam-dialdbg | |
run: ./bump-version.sh viam-dialdbg | |
- name: Bump viam-cpp-sdk | |
run: ./bump-version.sh viam-cpp-sdk | |
- name: Bump viam | |
run: ./bump-version.sh viam | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Auto-update of package versions |