Skip to content

feat: version bump to 2.0.1 to reflect the node-gyp c++17 changes (#33) #4

feat: version bump to 2.0.1 to reflect the node-gyp c++17 changes (#33)

feat: version bump to 2.0.1 to reflect the node-gyp c++17 changes (#33) #4

Workflow file for this run

name: Release
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
- v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+
jobs:
build:
if: ${{ github.repository == 'Netflix-Skunkworks/spectator-js-nodejsmetrics' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node 18
uses: actions/setup-node@v2
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: npm install
- name: Make
run: make
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}