We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04d3ab7 commit 22d1b2fCopy full SHA for 22d1b2f
.github/workflows/build-theme.yml
@@ -14,9 +14,10 @@ jobs:
14
- run: pnpm add gscan
15
- name: check if zip avaiable or not
16
run: |
17
- if ! command -v zip &> /dev/null
18
- echo "install the zip package ... "
19
- apt-get install -y zip
+ if which zip > /dev/null; then
+ echo "wget command exists."
+ else
20
+ echo "wget command does not exist."
21
fi
- - run : zip fastest.zip assets/build/*/* partials/*/* author.hbs default.hbs error.hbs index.hbs page.hbs post.hbs tag.hbs
22
- - run: pnpm run gscan fastest.zip
+ # - run : zip fastest.zip assets/build/*/* partials/*/* author.hbs default.hbs error.hbs index.hbs page.hbs post.hbs tag.hbs
23
+ # - run: pnpm run gscan fastest.zip
0 commit comments