File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 34
34
id : get_version
35
35
run : echo ::set-output name=version::$(node -p "require('./package.json').version")
36
36
37
+ - name : Config git
38
+ run : |
39
+ git config --global user.email "ci-build@aemforms"
40
+ git config --global user.name "ci-build"
41
+ env :
42
+ GITHUB_TOKEN : ${{ secrets.ADOBE_GH_TOKEN }}
43
+ GH_TOKEN : ${{ secrets.ADOBE_GH_TOKEN }}
44
+
37
45
- name : Bump version
38
46
id : bump_version
39
47
run : |
@@ -48,10 +56,11 @@ jobs:
48
56
49
57
- name : Commit and push changes
50
58
run : |
51
- git config --global user.email "ci-build@aemforms"
52
- git config --global user.name "ci-build"
53
59
git add package.json
54
60
git commit -m "Bump version to ${{ steps.bump_version.outputs.new_version }}"
61
+ env :
62
+ GITHUB_TOKEN : ${{ secrets.ADOBE_GH_TOKEN }}
63
+ GH_TOKEN : ${{ secrets.ADOBE_GH_TOKEN }}
55
64
56
65
- name : Publish to npm
57
66
run : |
You can’t perform that action at this time.
0 commit comments