-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Learning GH Actions
Example
Automatically Publish to npm using GitHub Actions
name: Publish
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: yarn install
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}Metadata
Metadata
Assignees
Labels
No labels