You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#This action is centrally managed in https://github.com/asyncapi/.github/
2
+
#Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in above mentioned repo
3
+
4
+
#Purpose of this action is to update npm package in libraries that use it. It is like dependabot for asyncapi npm modules only.
5
+
#It runs in a repo after merge of release commit and searches for other packages that use released package. Every found package gets updated with lates version
6
+
7
+
name: Bump package version in dependent repos - if Node project
2
8
3
9
on:
4
10
#It cannot run on release event as when release is created then version is not yet bumped in package.json
@@ -13,20 +19,14 @@ jobs:
13
19
steps:
14
20
- name: Checkout repo
15
21
uses: actions/checkout@v2
16
-
- name: Get version from package.json before release step
17
-
id: extractver
18
-
run: echo "::set-output name=version::$(npm run get:version --silent)"
19
-
- name: Get name of package from package.json
20
-
id: extractname
21
-
run: echo "::set-output name=packname::$(npm run get:name --silent)"
0 commit comments