Skip to content

Update catalog-info.yaml (#16) #16

Update catalog-info.yaml (#16)

Update catalog-info.yaml (#16) #16

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