Update catalog-info.yaml (#16) #16
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 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 |