Skip to content

Commit fb50f06

Browse files
authored
Merge pull request #4 from internxt/fix/ci-node-version
[_]: fix/ci-node-version
2 parents 4db4dda + a411c69 commit fb50f06

3 files changed

Lines changed: 10 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
packages: write
1515
strategy:
1616
matrix:
17-
node-version: [12.x]
17+
node-version: [16.x]
1818
steps:
1919
- uses: actions/checkout@v2
2020
- name: Use Node.js ${{ matrix.node-version }}

.github/workflows/publish.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,21 @@ on:
44
types: [created]
55
jobs:
66
build:
7-
runs-on: ubuntu-latest
8-
permissions:
7+
runs-on: ubuntu-latest
8+
permissions:
99
contents: read
10-
packages: write
10+
packages: write
1111
steps:
1212
- uses: actions/checkout@v2
1313
# Setup .npmrc file to publish to GitHub Packages
1414
- uses: actions/setup-node@v2
1515
with:
16-
node-version: '12.x'
16+
node-version: '16.x'
1717
registry-url: 'https://npm.pkg.github.com'
18-
- run: yarn
18+
- run: yarn
19+
env:
20+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1921
- run: yarn build
2022
- run: yarn publish
2123
env:
22-
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@internxt/lib",
3-
"version": "1.1.5",
3+
"version": "1.1.6",
44
"description": "Common logic shared between different projects of Internxt ",
55
"main": "dist/src/index.js",
66
"types": "dist/src/index.d.ts",

0 commit comments

Comments
 (0)