Compare commits

...

2 Commits

Author SHA1 Message Date
Joey Hafner
879400718b
#16 Remove unused static-mapping
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 10s
SSH and echo to file / ssh (push) Failing after 11s
2024-10-24 16:30:31 -07:00
Joey Hafner
a9901f3f24
#16 Run commands from vyos dir, add step to run commands via vyos.sh 2024-10-24 16:29:41 -07:00
2 changed files with 27 additions and 19 deletions

View File

@ -7,19 +7,27 @@ on:
jobs: jobs:
ssh: ssh:
defaults:
run:
working-directory: homelab/vyos
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout Jafner.net repo - name: Checkout Jafner.net repo
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Print env value - name: Configure SSH agent
run: | run: |
echo "${{ vars.TESTVAR }}" echo ${{ secrets.RUNNER_SSH_PRIVATEKEY }} >> /tmp/key
- name: SSH into host alias ssh='ssh -i /tmp/key'
uses: appleboy/ssh-action@v1.1.0 - name: Print running VyOS version
with: run: |
host: 192.168.1.1 ./vyos.sh op show system image
username: vyos
key: ${{ secrets.RUNNER_SSH_PRIVATEKEY }} # - name: SSH into host
debug: true # uses: appleboy/ssh-action@v1.1.0
script: | # with:
echo "$(date)" >> ~/hello.txt # host: 192.168.1.1
# username: vyos
# key: ${{ secrets.RUNNER_SSH_PRIVATEKEY }}
# debug: true
# script: |
# echo "$(date)" >> ~/hello.txt

File diff suppressed because one or more lines are too long