-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support SSH to IPv6 EC2 instance for Turms playground
- Loading branch information
1 parent
4e5bd9e
commit c20cba4
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,12 +21,20 @@ jobs: | |
if: ${{ !github.event.workflow_run || github.event.workflow_run.conclusion == 'success' }} | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Set up WARP | ||
uses: fscarmen/[email protected] | ||
with: | ||
stack: dual | ||
|
||
- name: SSH | ||
uses: appleboy/[email protected] | ||
# FIXME: Use the "master" branch as a workaround because | ||
# ssh-action hasn't released a new version that supports IPv6. | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.PLAYGROUND_SSH_HOST }} | ||
username: ${{ secrets.PLAYGROUND_SSH_USERNAME }} | ||
key: ${{ secrets.PLAYGROUND_SSH_KEY }} | ||
protocol: tcp6 | ||
script_stop: true | ||
script: | | ||
cd /opt/turms | ||
|