chore: release after tag push

This commit is contained in:
Mo
2022-06-14 10:50:08 -05:00
parent 998476196a
commit 4bd61adc5b
15 changed files with 59 additions and 72 deletions

26
.github/workflows/version-bump.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: Version Bump
on:
push:
branches: [ develop, main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Ruby
uses: ruby/setup-ruby@v1
- name: Install dependencies
run: yarn install
- name: ESLint
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Bump Version
run: yarn release