Skip to content

Releasing version 0.0.65 #91

Releasing version 0.0.65

Releasing version 0.0.65 #91

Workflow file for this run

name: Publish @fnproject/fdk npm Package
on:
push:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '14.17.0'
registry-url: 'https://registry.npmjs.org'
- run: npm --version
- run: node -v
- run: npm install
- run: git status
- run: ls -al
- run: npm publish --dry-run=true
- name: Publish Package to npm registry if branch is master
if: ${{ github.ref == 'refs/heads/master'}}
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}