docs(known-instances): update list of known instances (#847) #153
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SSH CI | |
on: | |
push: | |
branches: ["main"] | |
# pull_request: | |
# branches: ["main"] | |
permissions: | |
contents: read | |
jobs: | |
ssh: | |
if: github.repository == 'TecharoHQ/anubis' | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
host: | |
- [email protected] | |
- [email protected] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-tags: true | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: Install CI target SSH key | |
uses: shimataro/ssh-key-action@d4fffb50872869abe2d9a9098a6d9c5aa7d16be4 # v2.7.0 | |
with: | |
key: ${{ secrets.CI_SSH_KEY }} | |
name: id_rsa | |
known_hosts: ${{ secrets.CI_SSH_KNOWN_HOSTS }} | |
- name: Run CI | |
run: bash test/ssh-ci/rigging.sh ${{ matrix.host }} | |
env: | |
GITHUB_RUN_ID: ${{ github.run_id }} |