add tailscale
This commit is contained in:
parent
308e216fe0
commit
a42676cd2e
2 changed files with 8 additions and 2 deletions
8
.github/workflows/deploy-k3s.yaml
vendored
8
.github/workflows/deploy-k3s.yaml
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
.github/workflows/elixir.yaml
vendored
2
.github/workflows/elixir.yaml
vendored
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue