Release v0.3.0 #6

Merged
ksv741 merged 3 commits from krylov into main 2024-04-04 07:36:36 +03:00
3 changed files with 27 additions and 1 deletions
Showing only changes of commit 3440e0d7d9 - Show all commits

View File

@ -1,5 +1,7 @@
name: Test name: Test
run-name: ${{ github.actor }} 🚀 run-name: Linting and typechecking 🚀
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
on: on:
push: push:
pull_request: pull_request:

20
.github/workflows/publishing.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Publish Package
run-name: Publishing Package to npmjs registry
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
on:
release:
types: [published]
jobs:
publishing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
registry-url: 'https://registry.npmjs.org'
- run: yarn
- run: yarn npm publish

View File

@ -1,3 +1,7 @@
nodeLinker: node-modules nodeLinker: node-modules
yarnPath: .yarn/releases/yarn-4.1.1.cjs yarnPath: .yarn/releases/yarn-4.1.1.cjs
npmPublishRegistry: "https://registry.npmjs.org"
npmAuthToken: ${NODE_AUTH_TOKEN || ""}