Skip to content

Merge branch 'main' of https://github.com/rohanmohapatra/motorsports-app #4

Merge branch 'main' of https://github.com/rohanmohapatra/motorsports-app

Merge branch 'main' of https://github.com/rohanmohapatra/motorsports-app #4

Workflow file for this run

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@v3'
with:
persist-credentials: false
ref: ${{ github.ref }}
- name: 'cat package.json'
run: cat ./package.json
- name: 'Automated Version Bump'
id: version-bump
uses: 'phips28/gh-action-bump-version@v9.1.3'
with:
commit-message: 'Bumps version to {{version}}'
skip-tag: 'true'
env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
- name: 'Output'
run: cat ./package.json