mirror of
https://github.com/webfactory/ssh-agent.git
synced 2025-06-28 13:43:46 +00:00
Use $HOME
to support OS X as well (#2)
This fixes #1. Windows is currently not supported.
This commit is contained in:
parent
e9cec5c598
commit
e181806200
4 changed files with 37 additions and 8 deletions
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
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue