File tree 1 file changed +7
-6
lines changed 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -10,21 +10,22 @@ jobs:
10
10
cd :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
+ - name : Config GitHub user
14
+ shell : bash
15
+ run : |
16
+ git config --global user.name 'GitHub Actions'
17
+ git config --global user.email 'github-actions@localhost'
18
+
13
19
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
14
20
with :
15
21
token : ${{ secrets.PAT_RELEASE_PUSH }} # persists the token for pushing to the repo later
22
+
16
23
- uses : actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
17
24
with :
18
25
cache : ' npm'
19
26
node-version-file : ' .nvmrc'
20
27
registry-url : ' https://registry.npmjs.org'
21
28
22
- - name : Config GitHub user
23
- shell : bash
24
- run : |
25
- git config --global user.name 'GitHub Actions'
26
- git config --global user.email 'github-actions@localhost'
27
-
28
29
- uses : ./.github/actions/install-dependencies
29
30
30
31
- name : Update the version in the package files
You can’t perform that action at this time.
0 commit comments