Skip to content

add modern horizons 3 #466

add modern horizons 3

add modern horizons 3 #466

Workflow file for this run

name: "Bump Version"
on:
push:
branches: '**'
jobs:
bump-version:
name: Bump version (${{ github.sha }})
runs-on: ubuntu-latest
steps:
- name: "Checkout source code"
uses: "actions/checkout@v1"
with:
ref: ${{ github.ref }}
- name: "cat package.json"
run: cat ./package.json
- name: Use node
uses: actions/setup-node@v1
with:
version: 16.10.0
- name: Test
run: |
npm install --legacy-peer-deps
npm test
- name: 'Automated Version Bump'
uses: 'phips28/gh-action-bump-version@master'
if: github.ref_name == 'master'
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_EMAIL: 'mtgatool@gmail.com'
GITHUB_USER: 'mtgatool-bot'
with:
tag-prefix: 'v'
major-wording: 'add,feat,minor,breaking,patch,fix'
rc-wording: 'RELEASE'
- name: "cat package.json"
run: cat ./package.json