Skip to content

Commit c8e5877

Browse files
authored
fix: ts oauth (#193)
1 parent 58065e8 commit c8e5877

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
- name: Tailscale
2121
uses: tailscale/github-action@v3
2222
with:
23-
authkey: ${{ secrets.TS_AUTHKEY }}
23+
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
24+
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
25+
tags: tag:ci
2426
- run: npm ci
2527
- run: npm run build
2628
env:

.github/workflows/static.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ jobs:
4343
- name: Tailscale
4444
uses: tailscale/github-action@v3
4545
with:
46-
authkey: ${{ secrets.TS_AUTHKEY }}
46+
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
47+
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
48+
tags: tag:ci
4749
- uses: actions/cache/restore@v4
4850
id: restore-cache
4951
with:

0 commit comments

Comments
 (0)