SSH on runner #5
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
name: SSH on runner | |
on: | |
workflow_dispatch: | |
inputs: | |
os: | |
description: 'Operating System' | |
required: true | |
default: ubuntu-latest | |
type: choice | |
options: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
mod: | |
description: 'Install Go/Node modules' | |
required: true | |
default: true | |
type: boolean | |
jobs: | |
setup-ssh: | |
name: Setup runner and open SSH endpoint | |
runs-on: ${{ github.event.inputs.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: Load variables from file | |
uses: antifree/[email protected] | |
with: | |
filename: .github/workflows/utils/variables.json | |
- name: Setup asdf | |
uses: asdf-vm/actions/setup@v1 | |
- name: Setup go | |
if: runner.os != 'Windows' | |
run: | | |
asdf plugin add golang | |
asdf install golang | |
echo "go_version=$(asdf current golang | xargs | cut -d ' ' -f 2)" >> $GITHUB_ENV | |
- name: Cache go modules | |
if: github.event.inputs.mod == 'true' && runner.os != 'Windows' | |
uses: actions/[email protected] | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ env.go_version }}-${{ env.json_cache-versions_go }}-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ runner.os }}-go-${{ env.go_version }}-${{ env.json_cache-versions_go }}- | |
- name: Fetch go modules | |
if: github.event.inputs.mod == 'true' && runner.os != 'Windows' | |
working-directory: . | |
run: go mod tidy | |
- name: Install emacs | |
shell: bash | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
sudo apt-get install -y emacs | |
elif [ "$RUNNER_OS" == "Windows" ]; then | |
choco install emacs | |
else | |
echo "Already installed!" | |
fi | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3 | |
with: | |
limit-access-to-actor: true |