mirror of
https://github.com/nicolabs/musiccast-repairkit.git
synced 2026-05-21 03:10:03 +02:00
~ fixed : package.json was missing the repository
This commit is contained in:
parent
c6a80b7107
commit
ac0ee32872
3
.github/workflows/npm-github.yml
vendored
3
.github/workflows/npm-github.yml
vendored
|
|
@ -14,7 +14,6 @@ jobs:
|
|||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
id-token: write
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
# Setup .npmrc file to publish to GitHub Packages
|
||||
|
|
@ -22,8 +21,6 @@ jobs:
|
|||
with:
|
||||
node-version: '18.x'
|
||||
registry-url: 'https://npm.pkg.github.com'
|
||||
# Defaults to the user or organization that owns the workflow file
|
||||
scope: '@nicolabs'
|
||||
- run: npm ci
|
||||
- run: npm test
|
||||
- run: npm publish
|
||||
|
|
|
|||
2
.github/workflows/npmjs.yml
vendored
2
.github/workflows/npmjs.yml
vendored
|
|
@ -3,6 +3,8 @@ name: Publish Package to npmjs
|
|||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
tags:
|
||||
- 'v*.*.*'
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,9 @@
|
|||
"type": "git",
|
||||
"url": "https://github.com/nicolabs/musiccast-repairkit.git"
|
||||
},
|
||||
"main": "index.js",
|
||||
"publishConfig": {
|
||||
"provenance": true
|
||||
},
|
||||
"author": "nicobo (https://www.nicolabs.net/people/nicobo)",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
|
|
@ -19,5 +21,6 @@
|
|||
"scripts": {
|
||||
"test": "node . --version"
|
||||
},
|
||||
"main": "index.js",
|
||||
"bin": "./index.js"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue