Skip to content

Commit

Permalink
Remove debug lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ctmbl committed May 5, 2024
1 parent 9082fa0 commit ee1faaf
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,6 @@ jobs:
run: |
echo "github.event.repository.fork = ${{ github.event.repository.fork }}"
echo "github.event_name = ${{ github.event_name }}"
echo ''
echo ${{ '1' == '1' }}
echo ${{ ('1' == '1') }}
echo ${{ ('1' == '1') || 'a' == 'b' }}
echo ${{ ('1' == '1' && '2' == '2') }}
echo ${{ ('1' == '1' && '2' == '2') || 'a' == 'b' }}
echo ''
echo ${{ github.event_name == 'pull_request' }}
echo ${{ github.event.repository.fork == 'false' }}
echo ${{ ! github.event.repository.fork }}
echo ${{ (github.event_name == 'pull_request') }}
echo ${{ (github.event_name == 'pull_request' && ! github.event.repository.fork) }}
echo ${{ (github.event_name == 'pull_request') || github.event_name == 'workflow_dispatch' }}
echo ${{ (github.event_name == 'pull_request' && ! github.event.repository.fork) || github.event_name == 'workflow_dispatch' }}
# Checkout repo AND ITS SUBMODULES
- name: 🛒 Checkout
Expand Down Expand Up @@ -98,7 +84,6 @@ jobs:
- name: 🔑 Populate Key
run: |
echo "${{ secrets.PRIVATE_SSH_KEY }}" > ~/.ssh/id_rsa
exit 1
# Upload the build to the remote server location: the volume shared by the nginx container serving http requests
- name: 🚀 Upload
Expand Down

0 comments on commit ee1faaf

Please sign in to comment.