Skip to content

Instantly share code, notes, and snippets.

@Kareszrk
Created February 3, 2024 12:42
Show Gist options
  • Save Kareszrk/e3ebb3bcf75cfa1a152e7866989120a6 to your computer and use it in GitHub Desktop.
Save Kareszrk/e3ebb3bcf75cfa1a152e7866989120a6 to your computer and use it in GitHub Desktop.
github actions worker openssh
name: Deploy
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ main ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Deploy using ssh
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.SSH_PASSWORD }}
port: 22
script: |
cd /var/www/youtube.com/
git pull https://your_github_username:${{secrets.GITHUB_FINE_GRAINED_TOKEN}}@github.com/your_organization_name/your_repo_name main --force
git status
npm install --only=prod
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment