Skip to content

Commit

Permalink
,...
Browse files Browse the repository at this point in the history
  • Loading branch information
s1lvax committed Oct 11, 2024
1 parent 4976b52 commit 79c48d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Deploy App

#on:
# push:
# branches:
# - main # or your deployment branch
on:
push:
branches:
- main # or your deployment branch

jobs:
deploy:
Expand Down Expand Up @@ -38,6 +38,7 @@ jobs:
echo "CLIENT_ID=${{ secrets.CLIENT_ID }}" >> .env
echo "CLIENT_SECRET=${{ secrets.CLIENT_SECRET }}" >> .env
echo "DATABASE_URL=${{ secrets.DATABASE_URL }}" >> .env
echo "AUTH_TRUST_HOST=${{ secrets.AUTH_TRUST_HOST }}" >> .env
docker build -t route .
docker stop route || true
Expand Down
2 changes: 1 addition & 1 deletion svelte.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import adapter from '@sveltejs/adapter-cloudflare';
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';

/** @type {import('@sveltejs/kit').Config} */
Expand Down

0 comments on commit 79c48d2

Please sign in to comment.