Merge pull request #58 from tailscale/ci

Add continuous integration builder
pull/59/head
Denton Gentry 2 years ago committed by GitHub
commit 67f94b771b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,23 @@
name: Build Debug APK
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Build APK
run: make tailscale-debug.apk
Loading…
Cancel
Save