From 72d84d55561dc97b969ebe3045fa0ca77d8fc2e0 Mon Sep 17 00:00:00 2001 From: Zyrrus Date: Tue, 12 May 2026 22:51:28 -0500 Subject: [PATCH] reduced name collisions --- deploy/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy/action.yml b/deploy/action.yml index 624e9da..19f9757 100644 --- a/deploy/action.yml +++ b/deploy/action.yml @@ -54,8 +54,9 @@ runs: - name: Register Pangolin resource shell: bash run: | + REPO_SLUG="${GITHUB_REPOSITORY//\//-}" bash ${{ github.action_path }}/pangolin-upsert.sh \ --subdomain "${{ inputs.subdomain }}" \ --port "${{ inputs.port }}" \ - --resource-name "${{ inputs.app-name }}-${{ inputs.tag }}" \ + --resource-name "${REPO_SLUG}-${{ inputs.tag }}" \ --target-ip "$PANGOLIN_TARGET_IP"