mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-01-23 10:35:44 +00:00
Removes separate config files for Libretro cores stored in the cores folder and replaces them with options in the main config.yaml file.
28 lines
739 B
YAML
28 lines
739 B
YAML
# ------------------------------------------------------------
|
|
# 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'
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Deploy to all servers
|
|
env:
|
|
DO_TOKEN: ${{ secrets.DO_TOKEN }}
|
|
working-directory: ./.github/workflows/cd
|
|
run: |
|
|
./deploy-app.sh \
|
|
--env-dir=./cloudretro.io \
|
|
--provider-dir=./_provider/digital-ocean
|