-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate production deployment to self-managed server.
Deno Deploy has been erratic for too long, now.
- Loading branch information
1 parent
986a62b
commit 60394a2
Showing
2 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Deploy | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Configure SSH | ||
run: | | ||
mkdir -p ~/.ssh/ | ||
echo "$SSH_KEY" | tr -d '\r' > ~/.ssh/server.key | ||
chmod 600 ~/.ssh/server.key | ||
cat >>~/.ssh/config <<END | ||
Host server | ||
HostName $SSH_HOST | ||
User $SSH_USER | ||
IdentityFile ~/.ssh/server.key | ||
StrictHostKeyChecking no | ||
END | ||
cat ~/.ssh/config | ||
env: | ||
SSH_HOST: ${{ secrets.SSH_HOST }} | ||
SSH_USER: ${{ secrets.SSH_USER }} | ||
SSH_KEY: ${{ secrets.SSH_KEY }} | ||
|
||
- name: Deploy via SSH | ||
run: ssh server 'cd apps/budgetzen-web && git add . && git stash && git pull origin main && git stash clear && git remote prune origin && cp ../../scripts/config/budgetzen-web/.env . && cp ../../scripts/config/budgetzen-web/docker-compose.yml . && docker system prune -f && docker-compose up -d --build && docker-compose ps && docker-compose logs' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters