tailscale-code-tunnel #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tailscale-code-tunnel | |
on: | |
workflow_dispatch: | |
jobs: | |
code-test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Run system container with `podman` | |
run: | | |
podman run -d --name code --hostname code-${HOSTNAME} --systemd=always --cap-add=NET_RAW --cap-add=NET_ADMIN --cap-add=SYS_ADMIN --device=/dev/net/tun --device=/dev/fuse ghcr.io/gbraad-devenv/fedora/code-cli:41 | |
- name: Tailscale setup (root) | |
run: | | |
until podman exec code tailscale up --auth-key ${TAILSCALE_AUTHKEY} | |
do | |
sleep 0.1 | |
done | |
podman exec code tailscale set --ssh | |
podman exec code chmod 640 /etc/shadow | |
env: | |
TAILSCALE_AUTHKEY: ${{ secrets.TAILSCALE_AUTHKEY}} | |
- name: Start `code tunnel` as `gbraad` | |
run: | | |
podman exec code code tunnel user login --provider github | |
podman exec code systemctl enable --now code-tunnel@gbraad | |
- name: Hang around | |
run: | | |
until podman exec code systemctl is-active --quiet code-tunnel@gbraad | |
do | |
sleep 1 | |
done | |
IP=`podman exec code tailscale ip -4` | |
echo "Open in your web browser: http://${IP}:8000" | |
sleep infinity |