Skip to content

Commit

Permalink
comment out deploy ci steps
Browse files Browse the repository at this point in the history
  • Loading branch information
joelclermont committed Dec 18, 2023
1 parent 562b09f commit 61e792e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ jobs:
if: ${{ failure() }}
run: docker exec "$PROJECT_NAME-php-fpm" cat storage/logs/laravel.log

- name: Deploy to staging if develop branch
if: github.ref == 'refs/heads/develop'
run: [ -n "${{ secrets.ENVOYER_STAGING_TRIGGER }}" ] && curl -s ${{ secrets.ENVOYER_STAGING_TRIGGER }}

- name: Deploy to prod if main branch
if: github.ref == 'refs/heads/main'
run: [ -n "${{ secrets.ENVOYER_PROD_TRIGGER }}" ] && curl -s ${{ secrets.ENVOYER_PROD_TRIGGER }}
# - name: Deploy to staging if develop branch
# if: github.ref == 'refs/heads/develop'
# run: curl -s ${{ secrets.ENVOYER_STAGING_TRIGGER }}
#
# - name: Deploy to prod if main branch
# if: github.ref == 'refs/heads/main'
# run: curl -s ${{ secrets.ENVOYER_PROD_TRIGGER }}

0 comments on commit 61e792e

Please sign in to comment.