Skip to content
hash

GitHub Action

remote-bash

0.0.1 Pre-release

remote-bash

hash

remote-bash

Run remote shell script

Installation

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

              

- name: remote-bash

uses: shinhwagk/remote-bash@0.0.1

Learn more about this action in shinhwagk/remote-bash

Choose a version

Usage

name: test
on: [push]
jobs:
  test:
    runs-on: [ubuntu-18.04]
    steps:
      - name: remote-bash
        uses: shinhwagk/remote-bash@0.0.1
        with:
          args: arg1 arg2
        env:
          REMOTE_BASH_URL: https://raw.githubusercontent.com/shinhwagk/remote-bash/master/test.sh
action "exec remote shell script" {
  uses = "shinhwagk/remote-bash@master"
  env = {
    REMOTE_BASH_URL = "https://raw.githubusercontent.com/shinhwagk/remote-bash/master/test.sh"
  }
  args = "arg1 arg2"
}