mirror of
https://github.com/webfactory/ssh-agent.git
synced 2026-03-20 10:09:06 +08:00
Use $HOME to support OS X as well (#2)
This fixes #1. Windows is currently not supported.
This commit is contained in:
19
.github/workflows/demo.yml
vendored
Normal file
19
.github/workflows/demo.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
load_key_demo:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macOS-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Setup key
|
||||
uses: ./
|
||||
with:
|
||||
ssh-private-key: ${{ secrets.DEMO_KEY }}
|
||||
- run: |
|
||||
ssh-add -l
|
||||
echo SSH_AUTH_SOCK is at $SSH_AUTH_SOCK
|
||||
|
||||
|
||||
Reference in New Issue
Block a user