Skip to content

Commit

Permalink
Add a gh-action for bumping libosdp-sys version
Browse files Browse the repository at this point in the history
Signed-off-by: Siddharth Chandrasekaran <[email protected]>
  • Loading branch information
sidcha committed May 11, 2024
1 parent 66c6051 commit 13bc179
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/bump-libosdp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#
# Copyright (c) 2024 Siddharth Chandrasekaran <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
#

name: Bump LibOSDP Version

on:
workflow_dispatch:

jobs:
bump_libosdp:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: 'Commit'
run: |
git config --local user.email "[email protected]"
git config --local user.name "Github Actions Bot"
bash ./scripts/make-release.sh -c libosdp-sys
- name: 'Push'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
tags: true

0 comments on commit 13bc179

Please sign in to comment.