Skip to content

chore(release): 0.0.1 (#4) #4

chore(release): 0.0.1 (#4)

chore(release): 0.0.1 (#4) #4

Workflow file for this run

name: Bump version
on:
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
bump:
permissions:
contents: write
name: Bump version
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: ./.github/actions/test
- name: Generate tag
run: |
git config user.name Automated release
git config user.email [email protected]
yarn release
- name: Publish tag
id: publish_tag
run: git push --follow-tags