Skip to content

Commit 0969625

Browse files
author
Derek Luu
committedAug 23, 2023
update github action workflow, trigger run
add comment to workflow file clean up workflow, trigger update with env variable, trigger fix workflow, trigger add cmd to workflow and trigger update workflow, trigger actions trigger gh action add echo to log env ref
1 parent 3d95729 commit 0969625

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed
 

‎.github/workflows/publish-components.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,23 @@ on:
55
branches: [portal-ui]
66
paths:
77
- 'modules/components/**'
8+
9+
env:
10+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
11+
812
jobs:
913
build:
1014
runs-on: ubuntu-latest
15+
defaults:
16+
run:
17+
# default directory for run commands
18+
working-directory: modules/components
1119
steps:
1220
- uses: actions/checkout@v3
1321
# Setup .npmrc file to publish to npm
1422
- uses: actions/setup-node@v3
1523
with:
1624
node-version: '14.19.0'
17-
registry-url: 'https://registry.npmjs.org'
25+
registry-url: 'https://npm.pkg.github.com'
1826
- run: npm ci
1927
- run: npm publish
20-
env:
21-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

‎modules/components/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pilotdataplatform/arranger-components",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"description": "Data Portal Components",
55
"main": "dist/index.js",
66
"publishConfig": {

0 commit comments

Comments
 (0)
Please sign in to comment.