Brodey | CI #3
Workflow file for this run
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: Scuda CI | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
tailscale_job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Tailscale | |
uses: tailscale/github-action@v2 | |
with: | |
oauth-client-id: k4oU8AFYf121CNTRL | |
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} | |
tags: tag:ci,tag:production | |
- name: Verify Tailscale IP | |
run: tailscale ip | |
- name: Test SSH | |
run: tailscale ssh | |
- name: Disconnect Tailscale | |
run: tailscale logout |