Since tailscale/github-action#157 (comment) it should be possible to use a Windows runner with Tailscale. To test, I'll try to set up an RDP environment.
name: Window RDP
Since tailscale/github-action#157 (comment) it should be possible to use a Windows runner with Tailscale. To test, I'll try to set up an RDP environment.
name: Window RDP
name: 'Shared Configuration'
description: 'Fetch configuration parameters from a shared .ini file and export as environment variables'
author: 'gbraad'
inputs:
config_repo:
description: 'URL of the repository containing the configuration file'
required: true
config_file:
description: 'Path to the configuration file in the repository'
# create storage for state
podman volume create tailscaled-state
# launch the container
podman run -d \
--rm \
--name tailscaled \
--hostname $HOSTNAME \
--env TS_USERSPACE=false \
#!/bin/bash | |
download() { | |
input=$1 | |
final_output_file=$2 | |
# Check if the input contains a range pattern | |
if [[ $input =~ \[([0-9]+)-([0-9]+)\] ]]; then | |
# Extract the base URL and the range | |
base_url="${input%%_part*}" |