Skip to content

update

update #30

Workflow file for this run

name: Deploy
on:
push:
branches:
- release
jobs:
lint-client:
uses: ./.github/workflows/lint-client.yml
deploy-client:
needs:
- lint-client
uses: ./.github/workflows/deploy-client.yml
secrets:
SSH_KEY: ${{ secrets.SSH_KEY }}
CLIENT_IP: ${{ secrets.CLIENT_IP }}
lint-server:
uses: ./.github/workflows/lint-server.yml
deploy-server:
needs:
- lint-server
- deploy-client
uses: ./.github/workflows/deploy-server.yml
secrets:
SSH_KEY: ${{ secrets.SSH_KEY }}
SERVER_IP: ${{ secrets.SERVER_IP }}