Skip to content

Deploy embed to every channels #1242

Deploy embed to every channels

Deploy embed to every channels #1242

Workflow file for this run

name: deploy
on: [push]
jobs:
build:
name: Deploy
runs-on: ubuntu-latest
steps:
- run: mkdir temp/
- run: echo "${{ secrets.KEY }}" > temp/key
- run: chmod 700 temp/key
- run: ssh -o 'StrictHostKeyChecking no' -i temp/key ${{ secrets.USERNAME }}@${{ secrets.HOST }} "echo ${{ secrets.PASSWORD }} | sudo -S update-gab_bot.sh"
- run: rm -rf temp/