mirror of
https://github.com/tailscale/github-action.git
synced 2026-08-21 12:09:21 +00:00
25 lines
435 B
YAML
25 lines
435 B
YAML
name: tailscale
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Tailscale Action
|
|
uses: ./
|
|
with:
|
|
authkey: ${{ secrets.TAILSCALE_AUTHKEY }}
|
|
|
|
- name: check for hello.ipn.dev in netmap
|
|
run:
|
|
tailscale status | grep -q hello
|