Skip to content

Deploy api and client #19

Deploy api and client

Deploy api and client #19

name: Deploy api and client
on:
push:
branches:
- main
paths:
- 'client/**'
- 'api/**'
- '.github/workflows/deploy-api-client.yml'
- 'docker-compose.yaml'
workflow_dispatch:
permissions:
actions: write
checks: read
deployments: write
pull-requests: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Add env variables
uses: appleboy/[email protected]
env:
VITE_SESSION_SECRET: ${{ secrets.VITE_SESSION_SECRET }}
with:
host: ${{ secrets.DEPLOY_HOST_DNS }}
username: ${{ secrets.DEPLOY_USERNAME }}
key: ${{ secrets.DEPLOY_SSH_KEY }}
envs: VITE_SESSION_SECRET
script: export VITE_SESSION_SECRET=$VITE_SESSION_SECRET
- name: Docker-Compose Remote Deployment
uses: matiasnu/github-action-ssh-docker-compose@7fb3aa789f898b63c3722e6beb2dafa1a70f0e22 # v2.0.3
with:
ssh_host: ${{ secrets.DEPLOY_HOST_DNS }}
ssh_private_key: ${{ secrets.DEPLOY_SSH_KEY }}
ssh_user: ${{ secrets.DEPLOY_USERNAME }}
docker_compose_prefix: deploy