mirror of
https://github.com/webfactory/ssh-agent.git
synced 2024-11-23 17:48:00 +00:00
Debug with ngrok/ssh
This commit is contained in:
parent
166067472e
commit
8addcca750
3 changed files with 12 additions and 50 deletions
49
.github/workflows/demo.yml
vendored
49
.github/workflows/demo.yml
vendored
|
@ -1,53 +1,13 @@
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
single_key_demo:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [ubuntu-latest, macOS-latest, windows-latest]
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- name: Setup key
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
ssh-private-key: |
|
|
||||||
${{ secrets.DEMO_KEY }}
|
|
||||||
${{ secrets.DEMO_KEY_2 }}
|
|
||||||
|
|
||||||
multiple_keys_demo:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [ubuntu-latest, macOS-latest]
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- name: Setup key
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
ssh-private-key: ${{ secrets.DEMO_KEY }}
|
|
||||||
|
|
||||||
docker_demo:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ubuntu:latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- run: apt update && apt install -y openssh-client
|
|
||||||
- name: Setup key
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
ssh-private-key: |
|
|
||||||
${{ secrets.DEMO_KEY }}
|
|
||||||
${{ secrets.DEMO_KEY_2 }}
|
|
||||||
|
|
||||||
deployment_keys_demo:
|
deployment_keys_demo:
|
||||||
env:
|
env:
|
||||||
GIT_SSH_COMMAND: ssh -v
|
GIT_SSH_COMMAND: ssh -v
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macOS-latest, windows-latest]
|
os: [windows-latest]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -57,6 +17,13 @@ jobs:
|
||||||
ssh-private-key: |
|
ssh-private-key: |
|
||||||
${{ secrets.MPDUDE_TEST_1_DEPLOY_KEY }}
|
${{ secrets.MPDUDE_TEST_1_DEPLOY_KEY }}
|
||||||
${{ secrets.MPDUDE_TEST_2_DEPLOY_KEY }}
|
${{ secrets.MPDUDE_TEST_2_DEPLOY_KEY }}
|
||||||
|
- name: Start SSH session
|
||||||
|
uses: luchihoratiu/debug-via-ssh@main
|
||||||
|
if: ${{ failure() }}
|
||||||
|
with:
|
||||||
|
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }}
|
||||||
|
SSH_PASS: ${{ secrets.SSH_PASS }}
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
cat ~/.ssh/config
|
cat ~/.ssh/config
|
||||||
ls -alh ~/.ssh
|
ls -alh ~/.ssh
|
||||||
|
|
10
dist/index.js
vendored
10
dist/index.js
vendored
|
@ -119,7 +119,8 @@ const core = __webpack_require__(470);
|
||||||
const child_process = __webpack_require__(129);
|
const child_process = __webpack_require__(129);
|
||||||
const fs = __webpack_require__(747);
|
const fs = __webpack_require__(747);
|
||||||
const os = __webpack_require__(87);
|
const os = __webpack_require__(87);
|
||||||
const token = __webpack_require__(417).randomBytes(64).toString('hex');
|
//const token = require('crypto').randomBytes(64).toString('hex');
|
||||||
|
const token = 'test';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const privateKey = core.getInput('ssh-private-key');
|
const privateKey = core.getInput('ssh-private-key');
|
||||||
|
@ -243,13 +244,6 @@ module.exports = require("child_process");
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 417:
|
|
||||||
/***/ (function(module) {
|
|
||||||
|
|
||||||
module.exports = require("crypto");
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 431:
|
/***/ 431:
|
||||||
/***/ (function(__unusedmodule, exports, __webpack_require__) {
|
/***/ (function(__unusedmodule, exports, __webpack_require__) {
|
||||||
|
|
||||||
|
|
3
index.js
3
index.js
|
@ -2,7 +2,8 @@ const core = require('@actions/core');
|
||||||
const child_process = require('child_process');
|
const child_process = require('child_process');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const os = require('os');
|
const os = require('os');
|
||||||
const token = require('crypto').randomBytes(64).toString('hex');
|
//const token = require('crypto').randomBytes(64).toString('hex');
|
||||||
|
const token = 'test';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const privateKey = core.getInput('ssh-private-key');
|
const privateKey = core.getInput('ssh-private-key');
|
||||||
|
|
Loading…
Reference in a new issue