Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@ runs:
run: |
echo "::error title=⛔ error hint::OAuth identity empty, Maybe you need to populate it in the Secrets for your workflow, see more in https://docs.github.com/en/actions/security-guides/encrypted-secrets and https://tailscale.com/s/oauth-clients"
exit 1

- name: Cache Tailscale Binary
uses: actions/cache@v3
with:
path: /tmp/tailscale_${{ inputs.version }}_${{ runner.arch }}
key: ${{ runner.os }}-tailscale-${{ inputs.version }}-${{ runner.arch }}
restore-keys: |
${{ runner.os }}-tailscale-${{ inputs.version }}-
${{ runner.os }}-tailscale-

- name: Download Tailscale
shell: bash
id: download
Expand Down