diff --git a/.github/workflows/deploy_release.yml b/.github/workflows/deploy_release.yml index c221963..0cbd832 100644 --- a/.github/workflows/deploy_release.yml +++ b/.github/workflows/deploy_release.yml @@ -39,7 +39,7 @@ jobs: SERVICE: proxy run: | if [ "${{ github.event.inputs.environment }}" == "production" ]; then - echo "::set-output name=ingress_root_domain::fiberplane.com" + echo "ingress_root_domain=studio.fiberplane.com" >> $GITHUB_OUTPUT else echo "::set-output name=ingress_root_domain::${{ github.event.inputs.environment }}.fiberplane.io" fi diff --git a/.github/workflows/post_event.yml b/.github/workflows/post_event.yml index 3672de8..abdd361 100644 --- a/.github/workflows/post_event.yml +++ b/.github/workflows/post_event.yml @@ -51,7 +51,7 @@ jobs: api-token: ${{ secrets.FIBERPLANE_TOKEN }} title: "Deployment using GitHub Actions" labels: "service=${{ inputs.service }}|source=gh-actions|trigger=${{ inputs.trigger }}|environment=${{ inputs.environment }}|branch=${{ steps.vars.outputs.branch }}|commit=${{ steps.vars.outputs.short_sha }}|version=${{ inputs.version }}" - fp-base-url: "https://fiberplane.com" + fp-base-url: "https://studio.fiberplane.com" - name: Post deployment event to Fiberplane (Demo) id: demo diff --git a/.github/workflows/reusable_deploy_development.yml b/.github/workflows/reusable_deploy_development.yml index 7c2bfc1..52e390c 100644 --- a/.github/workflows/reusable_deploy_development.yml +++ b/.github/workflows/reusable_deploy_development.yml @@ -46,7 +46,7 @@ jobs: echo "::set-output name=branch::${GITHUB_HEAD_REF:-${GITHUB_REF##refs/heads/}}" echo "::set-output name=short_sha::$(git rev-parse --short "$GITHUB_SHA")" if [ "${{ inputs.environment }}" == "production" ]; then - echo "::set-output name=ingress_root_domain::fiberplane.com" + echo "ingress_root_domain=studio.fiberplane.com" >> $GITHUB_OUTPUT else echo "::set-output name=ingress_root_domain::${{ inputs.environment }}.fiberplane.io" fi