1
mirror of https://github.com/jakejarvis/careful-downloader.git synced 2025-04-27 05:28:29 -04:00
2021-10-05 10:42:41 -04:00

23 lines
412 B
YAML

name: Release
on:
push:
tags:
- 'v*'
jobs:
npm:
name: Publish to NPM
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
yarn install --frozen-lockfile
yarn publish