Skip to content

Commit

Permalink
Deploy scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
9p4 committed Dec 21, 2024
1 parent 58f183a commit 6562a56
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy to Vulcan

on:
push:
branches:
- master

jobs:
deploy:
name: Deploy to Vulcan
runs-on: ubuntu-latest
environment: production

steps:
- name: Setup SSH
run: |
umask 077
mkdir -p ~/.ssh
echo ${{ secrets.SSH_PRIVATE_KEY }} > ~/.ssh/id_ed25519
- name: Deploy with SSH
run: |
ssh -o StrictHostKeyChecking=no caf5@vulcan.moe -P 4225

0 comments on commit 6562a56

Please sign in to comment.