Skip to content

Commit 4192139

Browse files
authored
Merge pull request #51 from iterative/build-and-publish
2 parents 843f3a2 + a192612 commit 4192139

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
types: [created]
55
workflow_dispatch:
66
jobs:
7-
build:
7+
build-and-publish:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v3
@@ -13,6 +13,7 @@ jobs:
1313
node-version: '16.x'
1414
registry-url: 'https://registry.npmjs.org'
1515
- run: |
16+
yarn build
1617
yarn publish
1718
env:
1819
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "repo-link-check",
3-
"version": "0.14.1",
3+
"version": "0.14.2",
44
"description": "A multi-target library for ensuring all links in a file are alive",
55
"main": "index.js",
66
"author": "RMP",
@@ -67,6 +67,10 @@
6767
"pre-commit": "lint-staged"
6868
}
6969
},
70+
"repository": {
71+
"type": "git",
72+
"url": "https://github.com/iterative/link-check.git"
73+
},
7074
"lint-staged": {
7175
"*.{js,ts}": "eslint --cache --fix",
7276
"*.{js,ts,json,md}": "prettier --write"

0 commit comments

Comments
 (0)