mirror of
https://github.com/tailscale/github-action.git
synced 2026-08-20 19:59:21 +00:00
This makes sure that we test with the default version as specified in action.yml Updates #cleanup Signed-off-by: Percy Wegmann <percy@tailscale.com>
28 lines
542 B
YAML
28 lines
542 B
YAML
name: tailscale
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
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:
|
|
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
|