Skip to content

Commit

Permalink
Merge pull request #152 from metrico/docs-update
Browse files Browse the repository at this point in the history
Fix: builder steps
  • Loading branch information
jacovinus authored Dec 12, 2022
2 parents 6c72626 + 7f38894 commit 278ede0
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/npm_build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,29 @@ jobs:

strategy:
matrix:
node-version: [12.x]
node-version: [14.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v2
- name: 'Automated Version Bump Beta'
if: github.event_name != 'pull_request' && github.ref == 'ref/head/beta'
id: version
uses: 'phips28/gh-action-bump-version@master'
with:
tag-prefix: 'v'
skip-tag: true
tag-suffix: '-beta'

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 'Automated Version Bump'
if: github.event_name != 'pull_request'
id: version
uses: 'phips28/gh-action-bump-version@master'
with:
tag-prefix: 'v'
skip-tag: true
if: github.ref == 'ref/head/beta'
tag-suffix: '-beta'

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 278ede0

Please sign in to comment.