first commit
Some checks failed
Publish / Publish Job (push) Failing after 9s

This commit is contained in:
Дмитрий
2026-04-07 19:13:22 +03:00
commit b709dede26
4 changed files with 73 additions and 0 deletions

26
.github/workflows/publish.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: Publish
on:
push:
branches:
- main
jobs:
publish:
name: Publish Job
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: "https://git.lendry.ru/api/packages/lendry-workmaster/npm/"
scope: "@lendry-workmaster"
- name: Publish package
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}