Skip to content

Commit

Permalink
fixed typos in deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajsohal committed Aug 16, 2024
1 parent 68dde29 commit 7ebb4b0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ jobs:
run: composer install

- name: Set APP_DEBUG to true for debugging
run: echo "APP_DEBUG=true" >> .env
run: echo "APP_ENV=production" >> .env
run: echo "APP_URL=https://electrik.dev" >> .env
run: |
echo "APP_ENV=production" >> .env
echo "APP_DEBUG=true" >> .env
echo "APP_URL=https://electrik.dev" >> .env
echo "LOG_CHANNEL=stack" >> .env
echo "DB_DATABASE=:memory:" >> .env
- name: Build static files
run: php artisan export
Expand Down

0 comments on commit 7ebb4b0

Please sign in to comment.