mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-25 19:13:52 +00:00
24 lines
671 B
YAML
Vendored
24 lines
671 B
YAML
Vendored
# ------------------------------------------------------------
|
|
# Manual production deployment workflow
|
|
# ------------------------------------------------------------
|
|
|
|
name: deploy
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup SSH
|
|
uses: shimataro/ssh-key-action@v2
|
|
with:
|
|
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
known_hosts: 'PLACEHOLDER'
|
|
|
|
- name: Deploy to all servers
|
|
env:
|
|
USERNAME: ${{ github.repository_owner }}
|
|
PASSWORD: ${{ secrets.GITHUB_TOKEN }}
|
|
DO_TOKEN: ${{ secrets.DO_TOKEN }}
|
|
run: ./.github/workflows/redeploy/redeploy.sh
|