Skip to content

Commit

Permalink
create gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vishnuatrai-labs committed Jul 2, 2024
1 parent b4d2a1b commit acf27fb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
on: [push]

jobs:
bump-version:
name: increament version
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2

- name: increment tag
id: increment-tag
uses: vishnuatrai-labs/increment-git-tag@main
with:
version-type: patch

- name: get the new version
run: echo "New version is available ${{ steps.increment-tag.outputs.new-version }}"

0 comments on commit acf27fb

Please sign in to comment.