1
mirror of https://github.com/jakejarvis/dark-mode.git synced 2025-09-11 14:25:31 -04:00

switch to microbundle

This commit is contained in:
2021-11-11 10:43:30 -05:00
parent c62cde5e91
commit 57989cf25f
9 changed files with 1845 additions and 2290 deletions

View File

@@ -3,20 +3,18 @@ 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
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16.x
registry-url: https://registry.npmjs.org/
- run: yarn install --frozen-lockfile
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}