Skip to content

Merge branch 'main' of https://github.com/zer0-os/zApp-utils #7

Merge branch 'main' of https://github.com/zer0-os/zApp-utils

Merge branch 'main' of https://github.com/zer0-os/zApp-utils #7

Workflow file for this run

name: Version Bump
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: npm run build
- run: npm run test
- name: 'Automated Version Bump'
uses: 'phips28/gh-action-bump-version@master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag-prefix: 'v'