Skip to content

Commit

Permalink
Merge branch '3.x' of github.com:supercharge/docs into 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
marcuspoehls committed Nov 17, 2023
2 parents 79db837 + fa1639e commit ad8ac3f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Production Deployment

on:
push:
branches:
- 3.x
- 4.x

jobs:
deploy:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

name: Node ${{ matrix.node-version }}

steps:
- name: Running deployment script on server
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SUPERCHARGE_DEPLOY_SSH_HOST }}
username: ${{ secrets.SUPERCHARGE_DEPLOY_SSH_USER }}
port: ${{ secrets.SUPERCHARGE_DEPLOY_SSH_PORT }}
key: ${{ secrets.SUPERCHARGE_DEPLOY_SSH_PRIVATE_KEY }}
script: /home/launch/scripts/deploy-supercharge-docs.sh

0 comments on commit ad8ac3f

Please sign in to comment.