mirror of
https://github.com/webfactory/ssh-agent.git
synced 2024-11-22 01:00:50 +00:00
43c9b3548b
Anpassungen ausgeführt mit automatischer Migration. Co-authored-by: Fabian Schmick <fs@webfactory.de>
28 lines
764 B
YAML
28 lines
764 B
YAML
on: [push, pull_request]
|
|
|
|
jobs:
|
|
single_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 }}
|
|
${{ secrets.DEMO_KEY_2 }}
|
|
|
|
multiple_keys_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 }}
|