Skip to content

Commit 7297543

Browse files
authored
Merge pull request #7 from muvaf/fix-updoc-upload
makefile: fix version given to updoc upload
2 parents b4eee9f + 55914f5 commit 7297543

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ xpkg.build.provider-aws: do.build.images
8282
# Setup Upbound Docs
8383

8484
updoc-upload:
85-
@$(INFO) uploading docs for $(VERSION_MINOR)
85+
@$(INFO) uploading docs for v$(VERSION_MAJOR).$(VERSION_MINOR)
8686
@go run github.com/upbound/official-providers/updoc/cmd upload \
8787
--docs-dir=$(ROOT_DIR)/docs \
8888
--name=$(PROJECT_NAME) \
89-
--version=$(VERSION_MINOR) \
89+
--version=v$(VERSION_MAJOR).$(VERSION_MINOR) \
9090
--bucket-name=$(BUCKET_NAME) \
9191
--cdn-domain=$(CDN_DOMAIN) || $(FAIL)
92-
@$(OK) uploaded docs for $(VERSION_MINOR)
92+
@$(OK) uploaded docs for v$(VERSION_MAJOR).$(VERSION_MINOR)
9393

9494
ifneq ($(filter release-%,$(BRANCH_NAME)),)
9595
publish.artifacts: updoc-upload

0 commit comments

Comments
 (0)