Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Makefile to add platform prefix when uploading via make stage #1052

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GIT_BRANCH=$(shell git rev-parse --abbrev-ref HEAD)
USER=$(shell whoami)
STAGING_BUCKET=docs-mongodb-org-stg
STAGING_URL="https://docs-mongodb-org-stg.s3.us-east-2.amazonaws.com"
STAGING_URL="https://docs-mongodbcom-staging.corp.mongodb.com"
-include .env.production

.PHONY: stage
Expand All @@ -12,12 +12,12 @@ STAGING_URL="https://docs-mongodb-org-stg.s3.us-east-2.amazonaws.com"
prefix:
ifdef COMMIT_HASH
ifdef PATCH_ID
PREFIX = $(COMMIT_HASH)/$(PATCH_ID)/$(GATSBY_PARSER_BRANCH)/$(GATSBY_SITE)
PREFIX = platform/$(COMMIT_HASH)/$(PATCH_ID)/$(GATSBY_PARSER_BRANCH)/$(GATSBY_SITE)
else
PREFIX = $(COMMIT_HASH)/$(GATSBY_PARSER_BRANCH)/$(GATSBY_SITE)
PREFIX = platform/$(COMMIT_HASH)/$(GATSBY_PARSER_BRANCH)/$(GATSBY_SITE)
endif
else
PREFIX = $(GATSBY_PARSER_BRANCH)/$(GATSBY_SITE)
PREFIX = platform/$(GATSBY_PARSER_BRANCH)/$(GATSBY_SITE)
endif

stage: prefix
Expand Down
Loading