Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
upload-cloud

GitHub Action

SCP deploy action

v1.2.0

SCP deploy action

upload-cloud

SCP deploy action

Action to send dist files to a remote server with scp command

Installation

Copy and paste the following snippet into your .yml file.

              

- name: SCP deploy action

uses: nogsantos/ssh-scp-deploy@v1.2.0

Learn more about this action in nogsantos/ssh-scp-deploy

Choose a version

SSH-SCP Deploy action

Action to send dist files to a remote server with scp command

Required params

  • src: Sorce dir to deploy
  • host: SSH address
  • remote: Remote dir path
  • port: SSH Port
  • user: SSH User name
  • key: Private key

To publish

You must generate the ssh key and publish the public pair on your host. On git secrets, publish your private key

Ex.:

ssh-keygen -t rsa -b 4096 -f ssh_publish -C <some@name>

Example

This is a nuxt universal application

name: MasterCI

on:
  push:
    branches:
      - master

jobs:
  build:
    runs-on: ubuntu-latest
    name: Build and Deploy

    steps:
      - uses: actions/checkout@master

      - name: Bucket actions
        uses: actions/setup-node@v1
        with:
          node-version: 8
      - run: npm i
      - run: npm run test
      - run: npm run generate
      
      - name: Publish
        uses: nogsantos/scp-deploy@master
        with:
          src: ./dist/*
          host: ${{ secrets.SSH_HOST }}
          remote: ${{ secrets.SSH_DIR }}
          port: ${{ secrets.SSH_PORT }}
          user: ${{ secrets.SSH_USER }}
          key: ${{ secrets.SSH_KEY }}