Skip to content

Commit dbf4c38

Browse files
authored
Merge pull request #12 from thivi/master
Fix errors in the CICD flow
2 parents 7269f6f + 99a3eb1 commit dbf4c38

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/builder.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ on:
88
branches:
99
- master
1010
paths-ignore:
11-
- 'package.json'
12-
- 'package-lock.json'
11+
- '**/package.json'
12+
- '**/package-lock.json'
13+
- 'lerna.json'
1314

1415
jobs:
1516
build:
@@ -24,6 +25,10 @@ jobs:
2425
- uses: actions/checkout@v2
2526
with:
2627
token: ${{secrets.ASGARDIO_GITHUB_BOT_TOKEN}}
28+
if: github.repository == 'asgardio/asgardio-js-oidc-sdk'
29+
30+
- uses: actions/checkout@v2
31+
if: github.repository != 'asgardio/asgardio-js-oidc-sdk'
2732

2833
- name: Use Node.js ${{ matrix.node-version }}
2934
uses: actions/setup-node@v1
@@ -41,3 +46,4 @@ jobs:
4146
git config --global user.name "GitHub Action Version Bumping"
4247
npm run bump-patch-version
4348
git push --follow-tags
49+
if: github.repository == 'asgardio/asgardio-js-oidc-sdk'

package-lock.json

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"name": "asgardio-js-oidc-sdk",
3-
"version": "0.1.0",
43
"description": "Asgardio Authentication SDK and Sample Apps",
54
"main": "index.js",
65
"scripts": {

0 commit comments

Comments
 (0)