reduced name collisions

This commit is contained in:
2026-05-12 22:51:28 -05:00
parent 17c79eb6bd
commit 329e216b47

View File

@@ -54,8 +54,9 @@ runs:
- name: Register Pangolin resource - name: Register Pangolin resource
shell: bash shell: bash
run: | run: |
REPO_SLUG="${GITHUB_REPOSITORY//\//-}"
bash ${{ github.action_path }}/pangolin-upsert.sh \ bash ${{ github.action_path }}/pangolin-upsert.sh \
--subdomain "${{ inputs.subdomain }}" \ --subdomain "${{ inputs.subdomain }}" \
--port "${{ inputs.port }}" \ --port "${{ inputs.port }}" \
--resource-name "${{ inputs.app-name }}-${{ inputs.tag }}" \ --resource-name "${REPO_SLUG}-${{ inputs.tag }}" \
--target-ip "$PANGOLIN_TARGET_IP" --target-ip "$PANGOLIN_TARGET_IP"