From acf27fb92b1a25f28c81cd49c95fbcf372c787dc Mon Sep 17 00:00:00 2001 From: Vishnu Atrai Date: Tue, 2 Jul 2024 10:16:49 +0530 Subject: [PATCH] create gh workflow --- .github/workflows/main.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yaml diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml new file mode 100644 index 0000000..6b4beca --- /dev/null +++ b/.github/workflows/main.yaml @@ -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 }}"