We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c31610 commit e1d4f27Copy full SHA for e1d4f27
.github/workflows/build-alpine-netboot-image-zfs.yml
@@ -14,6 +14,16 @@ jobs:
14
run: |
15
podman run -it --rm -v $(pwd):/root/workdir alpine sh /root/workdir/build-alpine-netboot-zfs.sh
16
17
+ - name: Setting up SSH key to publish netboot image
18
+ uses: webfactory/ssh-agent@v0.8.0
19
+ with:
20
+ ssh-private-key: ${{ secrets.BOOT_SERVER_SSH_PRIVATE_KEY }}
21
+
22
+ - name: SSH into remote host
23
+ run: |
24
+ ssh -o StrictHostKeyChecking=no ${{ secrets.BOOT_SERVER_SSH_USERNAME }}@${{ secrets.BOOT_SERVER_IP_ADDRESS }} "date"
25
26
27
- name: Patch alpine image
28
29
./patch-alpine-netboot-image-with-zfs.sh
0 commit comments