Files
chipyard/.github/actions/ssh-checkout/action.yml
2021-10-07 22:57:29 -07:00

15 lines
352 B
YAML

name: ssh-checkout
description: "Checkout code and add SSH keys to access remote build server"
runs:
using: "composite"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SERVERKEY }}
known_hosts: ${{ secrets.BUILDSERVER }}