Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Merge branch 'next' into latest #7

Merge branch 'next' into latest

Merge branch 'next' into latest #7

Workflow file for this run

name: Publish
on:
push:
branches:
- latest
jobs:
publish:
runs-on: ubuntu-latest
environment:
name: npm
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- name: Install packages
run: npm ci
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}