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
@@ -30,8 +40,8 @@ Once you publish the release, this action will automatically
30
40
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
31
41
```
32
42
33
-
### Required parameter
34
-
#### ACCESS_TOKEN
43
+
## Required parameter
44
+
### ACCESS_TOKEN
35
45
1. Generate a [personal access token](https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line) with the public_repo or repo scope.
36
46
(repo is required for private repositories).
37
47
1. [Save as secrets](https://help.github.com/en/articles/virtual-environments-for-github-actions#creating-and-using-secrets-encrypted-variables)
@@ -52,7 +62,7 @@ yarn build
52
62
yarn install --production
53
63
rm -rdf .github
54
64
...
55
-
rm -rdf *.lock
65
+
rm -rdf _config.yml
56
66
```
57
67
58
68
### COMMIT_MESSAGE
@@ -89,7 +99,7 @@ Set to `false` if you do not want to create a minor version tag.
89
99
[Detail of tags](#tags)
90
100
91
101
### OUTPUT_BUILD_INFO_FILENAME
92
-
Filename of build information.
102
+
Filename of build information.
93
103
default: `''`
94
104
Absolute path and `..` are not permitted to use.
95
105
If this setting is not empty, following information is output with the file name.
@@ -99,6 +109,7 @@ If this setting is not empty, following information is output with the file name
return(yieldexecAsync(`git -C ${pushDir} status --short -uno`)).split(/\r\n|\n/).filter(line=>line.match(/^[MDA]\s+/)).length>0;
170
+
return(yieldexecAsync(`git -C ${pushDir} status --short -uno`,true,'git status --short -uno')).split(/\r\n|\n/).filter(line=>line.match(/^[MDA]\s+/)).length>0;
0 commit comments