118
68

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

GitHub ActionsにSSHで入る(簡単3ステップ)

Last updated at Posted at 2020-03-05

1. SSHしたいタイミングにaction-tmateを使うステップを差し込む

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    # 略(色々なstep)
    - name: Setup tmate session
      uses: mxschmitt/action-tmate@v3
    # 略(色々なstep)

2. Actionsのワークフローを動かす

pushする、PRを立てる等、ワークフローを動かすためのトリガーを実行してください。

ワークフローが動き出すと、action-tmateが動くステップでずっと止まっているので、そこを選択。

スクリーンショット 2020-03-05 12.48.53.png

SSHコマンドが書かれているのでコピーする。

スクリーンショット 2020-03-05 12.49.15.png

3. SSHログインする

ターミナルで先ほどコピーしたSSHコマンドを実行。

スクリーンショット 2020-03-05 12.52.05.png

以上、3ステップでした。

後始末

SSHログイン後にやりたい作業が終わったら、ワークフローを停止しましょう。

スクリーンショット 2020-03-05 12.59.35.png

参考

118
68
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
118
68

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?