fix babel fish layout #15
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" | |
jobs: | |
bump-version: | |
name: "Bump Version on main" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout source code" | |
uses: "actions/checkout@v2" | |
with: | |
ref: ${{ github.ref }} | |
- name: "cat package.json" | |
run: cat ./package.json | |
- name: "Setup Node.js" | |
uses: "actions/setup-node@v1" | |
with: | |
node-version: 16 | |
- name: "Automated Version Bump" | |
uses: "phips28/[email protected]" | |
with: | |
tag-prefix: "" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: "cat package.json" | |
run: cat ./package.json |