mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-14 00:54:04 +00:00
0fbe7d39cb
They were used a long time ago, then I scrapped them for simplicity to new contributors. I'm re-considering this and re-introducing one, for two (maybe three) reasons: 1. Reading on supply chain attacks 2. Build broken because of a dep change (see previous commit broken because of a change in yargs @ 17.1.0) (3.) Performance
23 lines
591 B
YAML
23 lines
591 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 ci --no-fund
|
|
- run: npm test
|
|
- run: npm run lint
|
|
- run: npm publish
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |