Skip to content

Commit

Permalink
Use local github actions by path reference (#12)
Browse files Browse the repository at this point in the history
Use local reference for including the other actions
  • Loading branch information
yzhivkov authored Feb 19, 2023
1 parent 2832ab3 commit 0ee2fb5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/on-demand-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,28 @@ on:

jobs:
openidl-common-lib:
uses: senofi/openidl-main/.github/workflows/publish-openidl-common-lib-npm.yml@testnet-nd-poc
uses: ./.github/workflows/publish-openidl-common-lib-npm.yml
openidl-mapper:
needs: openidl-common-lib
uses: senofi/openidl-main/.github/workflows/publish-mapper.yml@testnet-nd-poc
uses: ./.github/workflows/publish-mapper.yml
openidl-utilities:
needs: openidl-common-lib
uses: senofi/openidl-main/.github/workflows/publish-openidl-utilities.yml@testnet-nd-poc
uses: ./.github/workflows/publish-openidl-utilities.yml
openidl-data-call-app:
needs: openidl-common-lib
uses: senofi/openidl-main/.github/workflows/publish-openidl-data-call-app.yml@testnet-nd-poc
uses: ./.github/workflows/publish-openidl-data-call-app.yml
openidl-data-call-mood-listener:
needs: openidl-common-lib
uses: senofi/openidl-main/.github/workflows/publish-openidl-data-call-mood-listener.yml@testnet-nd-poc
uses: ./.github/workflows/publish-openidl-data-call-mood-listener.yml
openidl-data-call-processor:
needs: openidl-common-lib
uses: senofi/openidl-main/.github/workflows/publish-openidl-data-call-processor.yml@testnet-nd-poc
uses: ./.github/workflows/publish-openidl-data-call-processor.yml
openidl-insurance-data-manager:
needs: openidl-common-lib
uses: senofi/openidl-main/.github/workflows/publish-openidl-insurance-data-manager.yml@testnet-nd-poc
uses: ./.github/workflows/publish-openidl-insurance-data-manager.yml
openidl-data-event-listener:
needs: openidl-common-lib
uses: senofi/openidl-main/.github/workflows/publish-openidl-transactional-data-event-listener.yml@testnet-nd-poc
uses: ./.github/workflows/publish-openidl-transactional-data-event-listener.yml
openidl-ui-workspace:
needs: openidl-common-lib
uses: senofi/openidl-main/.github/workflows/publish-openidl-ui-workspace.yml@testnet-nd-poc
uses: ./.github/workflows/publish-openidl-ui-workspace.yml
1 change: 1 addition & 0 deletions .github/workflows/publish-openidl-common-lib-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Publish openIDL common-lib

on:
workflow_dispatch:
workflow_call:

jobs:
publish-openidl-common-lib-npm-package:
Expand Down
4 changes: 2 additions & 2 deletions openidl-common-lib/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion openidl-common-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@senofi/openidl-common-lib",
"version": "0.7.18",
"version": "0.7.24",
"private": false,
"main": "index.js",
"publishConfig": {
Expand Down

0 comments on commit 0ee2fb5

Please sign in to comment.