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
bc0f1c4
commit 2f0afef
Showing
1 changed file
with
11 additions
and
11 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 |
---|---|---|
|
@@ -27,6 +27,17 @@ jobs: | |
|
||
- uses: actions/[email protected] | ||
|
||
- name: Check file existence | ||
env: | ||
FILE: /home/runner/work/cacti/cacti/packages/cactus-plugin-keychain-memory/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 | ||
|
@@ -35,17 +46,6 @@ jobs: | |
|
||
- run: nuclei --version | ||
|
||
- name: Check file existence | ||
id: check_files | ||
uses: thebinaryfelix/check-file-existence-action@v1 | ||
with: | ||
files: '/home/runner/work/cacti/cacti/packages/cactus-plugin-keychain-memory/package.json' | ||
|
||
- name: Files exist | ||
if: steps.check_files.outputs.exists == 'true' | ||
# Only runs if all of the files exist | ||
run: echo "All files exist!" | ||
|
||
- run: npm run configure | ||
|
||
- name: Create URLs file for Nuclei | ||
|