Skip to content

Commit

Permalink
Create deploy_to_npm.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
dbacarel authored Oct 5, 2021
1 parent 7421c11 commit b3bcd67
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/deploy_to_npm.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@

name: Publish Package to NPM

# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Publish when a release is created
# release:
# types: [created]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
deploy:
name: Deploy harp-fontcatalog package
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Setup Node
if: github.ref == 'refs/heads/master'
uses: actions/setup-node@v1
with:
node-version: 14
registry-url: https://registry.npmjs.org/
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout code
uses: actions/checkout@v2
# Install
- name: Install
run: yarn --frozen-lockfile
shell: bash
# Publish
- name: Deploy To NPM
if: github.ref == 'refs/heads/master'
run: npm publish
shell: bash
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

0 comments on commit b3bcd67

Please sign in to comment.