forked from hyperledger-cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: jagpreetsinghsasan <[email protected]>
- Loading branch information
jagpreetsinghsasan
committed
Nov 5, 2024
1 parent
c7218cb
commit 296ad58
Showing
1 changed file
with
22 additions
and
0 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 |
---|---|---|
|
@@ -49,6 +49,28 @@ jobs: | |
echo "$FILE does not exist!" | ||
fi | ||
- name: Check file existence | ||
env: | ||
FILE: /home/runner/work/hyperledger-cacti/cacti/package.json | ||
shell: bash | ||
run: | | ||
if [[ -f $FILE ]]; then | ||
echo "$FILE exists!" | ||
else | ||
echo "$FILE does not exist!" | ||
fi | ||
- name: Check file existence | ||
env: | ||
FILE: /home/runner/work/cacti/cacti/package.json | ||
shell: bash | ||
run: | | ||
if [[ -f $FILE ]]; then | ||
echo "$FILE exists!" | ||
else | ||
echo "$FILE does not exist!" | ||
fi | ||
# - uses: actions/[email protected] | ||
# with: | ||
# go-version: 1.23 | ||
|