-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ea68f4
commit 036a4c9
Showing
1 changed file
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,13 +12,17 @@ jobs: | |
with: | ||
version: 8 | ||
- run: pnpm add gscan | ||
- name: check if zip avaiable or not | ||
run: | | ||
if ! [ -x "$(command -v zip)" ]; then | ||
echo "installing zip command" | ||
apt-get install zip -y | ||
fi | ||
- name: Easy Zip Files | ||
uses: vimtor/[email protected] | ||
with: | ||
files: assets/build/ partials/ author.hbs default.hbs error.hbs index.hbs page.hbs post.hbs tag.hbs | ||
dest: ${{ github.workspace }}/fastest.zip | ||
# run: | | ||
# if ! [ -x "$(command -v zip)" ]; then | ||
# echo "installing zip command" | ||
# apt-get install zip -y | ||
# fi | ||
- run: ls -la | ||
- run: pwd | ||
# - run : zip fastest.zip assets/build/*/* partials/*/* author.hbs default.hbs error.hbs index.hbs page.hbs post.hbs tag.hbs | ||
# - run: pnpm run gscan fastest.zip | ||
- run: pnpm run gscan ${{ github.workspace }}/fastest.zip |