Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xDEnYO committed Jul 25, 2024
1 parent 8d4a557 commit 17e712b
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/diamondEmergencyPause.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,23 @@ jobs:
- name: Debug - Print current directory
run: pwd

- name: Debug - Check file existence
- name: Debug - Check diamondEmergencyPause existence
run: |
if [ -f script/tasks/diamondEmergencyPause.sh ]; then
echo "diamondEmergencyPause exists"
else
echo "diamondEmergencyPause does not exist"
fi
- name: Debug - Check diamondEmergencyPause2 existence
run: |
if [ -f script/tasks/diamondEmergencyPause2.sh ]; then
echo "File exists"
echo "diamondEmergencyPause2 exists"
else
echo "File does not exist"
echo "diamondEmergencyPause2 does not exist"
fi
- name: Run diamondEMERGENCYPause script
run: |
chmod +x script/tasks/diamondEmergencyPause2.sh
./script/tasks/diamondEmergencyPause2.sh
env:
PRIVATE_KEY_PAUSER_WALLET: ${{ secrets.TEST_SECRET }}

0 comments on commit 17e712b

Please sign in to comment.