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 }}"