Skip to content

Commit 5337035

Browse files
authored
Merge pull request #204 from gregoranders/development
0.0.15
2 parents dddbe2c + b915c7e commit 5337035

5 files changed

Lines changed: 14 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ jobs:
1616
build:
1717
runs-on: ${{ matrix.os }}
1818

19+
permissions:
20+
contents: read
21+
packages: write
22+
1923
strategy:
2024
matrix:
2125
os: [ubuntu-latest]
@@ -44,7 +48,10 @@ jobs:
4448
npm run build
4549
- uses: actions/setup-node@v2
4650
with:
51+
node-version: ${{ matrix.node-version }}
4752
registry-url: 'https://npm.pkg.github.com'
53+
scope: '@gregoranders'
54+
- run: npm ci
4855
- run: npm publish
4956
env:
5057
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ This action provides the _name_, _version_ and the content of **package.json**,
3838
...
3939
- name: nodejs project information
4040
id: projectinfo
41-
uses: gregoranders/nodejs-project-info@v0.0.14
41+
uses: gregoranders/nodejs-project-info@v0.0.15
4242
- name: create release action
4343
id: createrelease
44-
uses: gregoranders/nodejs-create-release@v0.0.14
44+
uses: gregoranders/nodejs-create-release@v0.0.15
4545
env:
4646
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4747
PACKAGE_JSON: ${{ steps.projectinfo.outputs.context }}

SECURITY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
| Version | Supported |
66
| :------ | :----------------: |
7-
| 0.0.14 | :white_check_mark: |
7+
| 0.0.15 | :white_check_mark: |
8+
| 0.0.14 | :x: |
89
| 0.0.13 | :x: |
910
| 0.0.12 | :x: |
1011
| 0.0.11 | :x: |

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nodejs-project-info",
3-
"version": "0.0.14",
3+
"version": "0.0.15",
44
"description": "NodeJS Project Information",
55
"main": "./dist/index.js",
66
"scripts": {
@@ -19,11 +19,10 @@
1919
},
2020
"repository": {
2121
"type": "git",
22-
"url": "git+https://github.com/gregoranders/nodejs-project-info.git"
22+
"url": "https://github.com/gregoranders/nodejs-project-info.git"
2323
},
2424
"publishConfig": {
25-
"access": "public",
26-
"registry": "https://npm.pkg.github.com"
25+
"access": "public"
2726
},
2827
"keywords": [
2928
"github",

0 commit comments

Comments
 (0)