Skip to content

ready update to v1.2.10 #26

ready update to v1.2.10

ready update to v1.2.10 #26

Workflow file for this run

name: core-release
on:
push:
branches: ['core']
paths:
- 'package.json'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x]
steps:
- uses: actions/checkout@v3
with:
ref: core
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org
- name: Build
run: tsc
- name: Publish
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.LAMPESE_PUSSY}}