-
Notifications
You must be signed in to change notification settings - Fork 83
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
Showing
1 changed file
with
7 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 |
---|---|---|
|
@@ -261,7 +261,7 @@ jobs: | |
- name: Verify zap-cli exists in Windows x64 .zip package | ||
if: startsWith(matrix.os, 'macos') | ||
run: | | ||
output=$(7za l ./dist/zap-win-x64.zip) | ||
output=$(npx 7za l ./dist/zap-win-x64.zip) | ||
expression=zap-cli | ||
if [[ $output == *"$expression"* ]]; then | ||
echo "Output contains $expression" | ||
|
@@ -272,7 +272,7 @@ jobs: | |
- name: Verify zap-cli exists in Windows arm64 .zip package | ||
if: startsWith(matrix.os, 'macos') | ||
run: | | ||
output=$(7za l ./dist/zap-win-arm64.zip) | ||
output=$(npx 7za l ./dist/zap-win-arm64.zip) | ||
expression=zap-cli | ||
if [[ $output == *"$expression"* ]]; then | ||
echo "Output contains $expression" | ||
|
@@ -283,7 +283,7 @@ jobs: | |
- name: Verify zap-cli exists in macOS x64 .zip package | ||
if: startsWith(matrix.os, 'macos') | ||
run: | | ||
output=$(7za l ./dist/zap-mac-x64.zip | grep zap-cli) | ||
output=$(npx 7za l ./dist/zap-mac-x64.zip | grep zap-cli) | ||
expression=zap-cli | ||
if [[ $output == *"$expression"* ]]; then | ||
echo "Output contains $expression" | ||
|
@@ -350,7 +350,7 @@ jobs: | |
if: startsWith(matrix.os, 'macos') | ||
uses: GuillaumeFalourd/[email protected] | ||
with: | ||
command_line: 7za l ./dist/zap-win-x64.zip | grep apack.json | ||
command_line: npx 7za l ./dist/zap-win-x64.zip | grep apack.json | ||
contains: 'apack.json' | ||
- name: Verify apack.json exists in Windows x64 .zip package's app.asar archive | ||
if: startsWith(matrix.os, 'macos') | ||
|
@@ -362,7 +362,7 @@ jobs: | |
if: startsWith(matrix.os, 'macos') | ||
uses: GuillaumeFalourd/[email protected] | ||
with: | ||
command_line: 7za l ./dist/zap-win-arm64.zip | grep apack.json | ||
command_line: npx 7za l ./dist/zap-win-arm64.zip | grep apack.json | ||
contains: 'apack.json' | ||
- name: Verify apack.json exists in Windows arm64 .zip package's app.asar archive | ||
if: startsWith(matrix.os, 'macos') | ||
|
@@ -375,7 +375,7 @@ jobs: | |
if: startsWith(matrix.os, 'macos') | ||
uses: GuillaumeFalourd/[email protected] | ||
with: | ||
command_line: 7za l ./dist/zap-mac-x64.zip | grep apack.json | ||
command_line: npx 7za l ./dist/zap-mac-x64.zip | grep apack.json | ||
contains: 'apack.json' | ||
- name: Verify apack.json exists in macOS x64 .zip package's app-x64.asar archive | ||
if: startsWith(matrix.os, 'macos') | ||
|
@@ -387,7 +387,7 @@ jobs: | |
if: startsWith(matrix.os, 'macos') | ||
uses: GuillaumeFalourd/[email protected] | ||
with: | ||
command_line: 7za l ./dist/zap-mac-arm64.zip | grep apack.json | ||
command_line: npx 7za l ./dist/zap-mac-arm64.zip | grep apack.json | ||
contains: 'apack.json' | ||
- name: Verify apack.json exists in macOS arm64 .zip package's app-arm64.asar archive | ||
if: startsWith(matrix.os, 'macos') | ||
|