We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent8901771 commit4f75ca7Copy full SHA for 4f75ca7
.github/workflows/consistent-desc.yaml
@@ -21,17 +21,20 @@ jobs:
21
22
-name:Install dependencies
23
run:|
24
- npm install --production node-html-parser marked @octokit/rest
+ mkdir -p temp && cd temp
25
+ yarn init -y
26
+ yarn add node-html-parser marked @octokit/rest -S
27
28
-name:Download Hero program
29
- curl -o update-meta.js https://raw.githubusercontent.com/darsan-in/.github/main/utils/update-meta.js
30
+ curl -otemp/update-meta.js https://raw.githubusercontent.com/darsan-in/.github/main/utils/update-meta.js
31
32
-name:Update meta
33
env:
34
GITHUB_TOKEN:${{ secrets.META_UPDATE_KEY }}
35
REPO_META:${{ github.repository }}
36
37
+ cd temp
38
node update-meta.js
39
40
-name:Commit and push changes