mirror of
https://github.com/tailscale/github-action.git
synced 2026-08-20 16:29:21 +00:00
30 lines
624 B
YAML
30 lines
624 B
YAML
name: tailscale
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- 'mpminardi/linux-experiments'
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Tailscale Action
|
|
uses: ./
|
|
with:
|
|
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
|
|
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
|
|
tags: tag:ci
|
|
|
|
- name: check for hello.ts.net in netmap
|
|
run: |
|
|
tailscale status | grep -q hello
|
|
sleep 30m
|
|
nslookup 100.101.102.103
|