mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-05 04:47:54 +00:00
23 lines
596 B
YAML
23 lines
596 B
YAML
name: publish
|
|
on:
|
|
release:
|
|
types:
|
|
- created
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
# Setup .npmrc file to publish to npm
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
# Align the version of Node here with ci.yml.
|
|
node-version: '16.x'
|
|
registry-url: 'https://registry.npmjs.org'
|
|
# Will also (through `prepare` hook): 1. install ./app, and 2. build
|
|
- run: npm install --no-fund
|
|
- run: npm test
|
|
- run: npm run lint
|
|
- run: npm publish
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |