From a42676cd2eee5ef43065b75ec751a774ed363e90 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Fri, 13 Jun 2025 13:38:51 -0500 Subject: [PATCH] add tailscale --- .github/workflows/deploy-k3s.yaml | 8 +++++++- .github/workflows/elixir.yaml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-k3s.yaml b/.github/workflows/deploy-k3s.yaml index 3d6d08a..8346be2 100644 --- a/.github/workflows/deploy-k3s.yaml +++ b/.github/workflows/deploy-k3s.yaml @@ -19,6 +19,13 @@ jobs: packages: write # Needed to push to GHCR steps: + - name: Tailscale + uses: tailscale/github-action@v3 + with: + oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} + oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} + use-cache: "true" + - name: Checkout code uses: actions/checkout@v4 @@ -96,7 +103,6 @@ jobs: # Ensure initContainer is also updated (duplicate sed command is fine, ensures both are hit if structure changes) sed -i "s|your-ghcr-username/aprs-app:latest|$ACTUAL_IMAGE_NAME_WITH_TAG|g" k8s/app-deployment-processed.yaml - - name: Apply Kubernetes manifests env: KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG_DATA }} # Pass secret to env for kubectl if not using azure/setup-kubectl diff --git a/.github/workflows/elixir.yaml b/.github/workflows/elixir.yaml index 039b310..3cb7bdf 100644 --- a/.github/workflows/elixir.yaml +++ b/.github/workflows/elixir.yaml @@ -40,7 +40,7 @@ jobs: # Specify the OTP and Elixir versions to use when building # and running the workflow steps. matrix: - otp: ["27.3.42"] + otp: ["27.3.4"] elixir: ["1.18.4"] steps: # Step: Setup Elixir + Erlang image as the base.