{.github/workflows,action.yml}: run windows in unattended mode

Add the `--unattended` flag when running the action on windows-based
machines. This allows the action to properly connect on windows machines
that do not have full GUI support under the hood (e.g., for the current
batch of `windows-11-arm` runners).

Fixes https://github.com/tailscale/github-action/issues/180

Signed-off-by: Mario Minardi <mario@tailscale.com>
This commit is contained in:
Mario Minardi 2025-06-23 10:07:15 -06:00
parent 6986d2c82a
commit 8fe6f78f60
No known key found for this signature in database
2 changed files with 5 additions and 2 deletions

View file

@ -13,7 +13,7 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-latest, windows-11-arm]
cache: ['false', 'true']
runs-on: ${{ matrix.os }}
steps: