Merge pull request #12 from OasisDEX/marcinciarka/bun-parsing #1
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 package version and tag it | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
bump-and-tag: | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
name: Bump and Tag | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get Tags | |
run: git fetch origin +refs/tags/*:refs/tags/* | |
- name: Bump Version | |
id: bump_and_tag | |
uses: konsentus/action.bump-version-and-tag@v2 |