Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Pre-Alpha v0.0.1 - Test #3

Pre-Alpha v0.0.1 - Test

Pre-Alpha v0.0.1 - Test #3

Workflow file for this run

name: Release to npm
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Login to npm registry
run: echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" > ~/.npmrc
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Publish to npm
run: npm publish --access public