Skip to content

Merge pull request #38 from sailpoint-oss/bp/pltconn-3953 #16

Merge pull request #38 from sailpoint-oss/bp/pltconn-3953

Merge pull request #38 from sailpoint-oss/bp/pltconn-3953 #16

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '16' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Run tests
run: npm ci && npm test
- name: Set package version
run: npm version ${{ github.ref_name }} --no-git-tag-version --allow-same-version
- name: Publish to NPM
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
access: public