ci: version bump of gh_action_dart_conventional_release #4
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: Automated version bump | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
bump_version: | |
name: Version bump on main | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: "actions/checkout@v2" | |
with: | |
ref: ${{ github.ref }} | |
- name: cat pubspec.yaml | |
run: cat ./pubspec.yaml | |
- name: Setup Node.js | |
uses: "actions/setup-node@v1" | |
with: | |
node-version: 16 | |
- name: Automated version bump | |
uses: impaktfull/[email protected] | |
with: | |
tag-prefix: 'v' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: cat pubspec.yaml | |
run: cat ./pubspec.yaml |