Skip to content

Commit

Permalink
Use new domain for production (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
hatchan authored Nov 14, 2022
1 parent e350239 commit 659eefe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/post_event.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_deploy_development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 659eefe

Please sign in to comment.