Skip to content

Commit

Permalink
Rename references to the previous rapid-ui repo
Browse files Browse the repository at this point in the history
  • Loading branch information
lcard committed Sep 14, 2023
1 parent 21b0816 commit 2739dcb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v7.0.2 / v0.1.2 (sdk) - _2023-09-14_

### Fixes

- Update UI repo references.

## v7.0.1 / v0.1.2 (sdk) - _2023-09-13_

### Fixes
Expand Down Expand Up @@ -27,6 +33,7 @@

- See the [migration doc](migration.md) for details on how to migrate to v7 from v6.

[Unreleased changes]: https://github.com/no10ds/rapid/compare/v7.0.1...HEAD
[Unreleased changes]: https://github.com/no10ds/rapid/compare/v7.0.2...HEAD
[v7.0.2 / v0.1.1 (sdk)]: https://github.com/no10ds/rapid/v7.0.1...v7.0.2
[v7.0.1 / v0.1.1 (sdk)]: https://github.com/no10ds/rapid/v7.0.0...v7.0.1
[v7.0.0 / v0.1.1 (sdk)]: https://github.com/no10ds/rapid/v7.0.0
2 changes: 1 addition & 1 deletion infrastructure/modules/ui/s3.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ resource "aws_s3_bucket_website_configuration" "rapid_ui_website" {
}

locals {
ui_registry_url = "https://github.com/no10ds/rapid-ui/releases/download/${var.ui_version}"
ui_registry_url = "https://github.com/no10ds/rapid/releases/download/${var.ui_version}"
}

resource "null_resource" "download_static_ui" {
Expand Down
2 changes: 1 addition & 1 deletion ui/.storybook/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { create } from '@storybook/theming'
export default create({
base: 'light',
brandTitle: 'Rapid API',
brandUrl: 'https://github.com/no10ds/rapid-ui',
brandUrl: 'https://github.com/no10ds/rapid',
brandImage: 'img/logo.png'
})
2 changes: 1 addition & 1 deletion ui/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ IMAGE_NAME=ui-f1-registry
LATEST_COMMIT_HASH=$(shell git rev-parse --short HEAD)
ZIP_PATH=$(IMAGE_NAME)-$(LATEST_COMMIT_HASH)

LATEST_TAG=$(shell gh api /repos/no10ds/rapid-ui/releases/latest | jq -r ".tag_name")
LATEST_TAG=$(shell gh api /repos/no10ds/rapid/releases/latest | jq -r ".tag_name")
ifeq ($(LATEST_TAG), null)
TAG_NAME="$(IMAGE_NAME)-$(LATEST_COMMIT_HASH)"
else
Expand Down

0 comments on commit 2739dcb

Please sign in to comment.