mirror of https://github.com/buster-so/buster.git
Merge pull request #826 from buster-so/staging
Update github main deploy action
This commit is contained in:
commit
044bff9a26
|
@ -17,7 +17,7 @@ jobs:
|
|||
deploy:
|
||||
uses: ./.github/workflows/deploy-web-reusable.yml
|
||||
with:
|
||||
environment: production
|
||||
environment: main
|
||||
branch: main
|
||||
api_url: https://api.buster.so
|
||||
public_url: https://platform.buster.so
|
||||
|
|
|
@ -102,7 +102,6 @@ export { default as Pen } from './pen';
|
|||
export { default as PenSparkle } from './pen-sparkle';
|
||||
export { default as Pencil } from './pencil';
|
||||
export { default as Pencil2 } from './pencil-2';
|
||||
export { default as Pilcrow } from './pilcrow';
|
||||
export { default as Plus } from './plus'; // Plus/add icon
|
||||
export { default as Quote } from './quote';
|
||||
export { default as RectArrowDownLeft } from './rect-arrow-down-left';
|
||||
|
@ -146,6 +145,7 @@ export { default as ThumbsUp } from './thumbs-up';
|
|||
export { default as Trash } from './trash';
|
||||
export { default as Trash2 } from './trash-2';
|
||||
export { default as TriangleWarning } from './triangle-warning';
|
||||
export { default as TypeScale } from './type-scale';
|
||||
export { default as Undo } from './undo';
|
||||
export { default as Ungroup } from './ungroup';
|
||||
export { default as UnorderedList } from './unordered-list';
|
||||
|
|
|
@ -68,10 +68,8 @@ import {
|
|||
// Actions
|
||||
PenSparkle,
|
||||
// Structure
|
||||
Pilcrow,
|
||||
Plus,
|
||||
Quote,
|
||||
RectArrowDownLeft,
|
||||
Redo,
|
||||
SearchContent,
|
||||
SelectDropdown,
|
||||
|
@ -109,9 +107,9 @@ import {
|
|||
VolumeUp,
|
||||
Xmark,
|
||||
} from '@/components/ui/icons';
|
||||
|
||||
import DuplicatePlus from '@/components/ui/icons/NucleoIconOutlined/duplicate-plus';
|
||||
import ReplaceObjs from '@/components/ui/icons/NucleoIconOutlined/replace-objs';
|
||||
import TypeScape from '@/components/ui/icons/NucleoIconOutlined/type-scale';
|
||||
|
||||
export const NodeTypeIcons = {
|
||||
// Metrics
|
||||
|
@ -143,7 +141,7 @@ export const NodeTypeIcons = {
|
|||
checkList: SquareCode,
|
||||
|
||||
// Structure
|
||||
paragraph: Pilcrow,
|
||||
paragraph: TypeScape,
|
||||
quote: Quote,
|
||||
toggle: ChevronRight,
|
||||
columnsThree: GridLayoutCols3,
|
||||
|
|
|
@ -46,12 +46,12 @@
|
|||
// Production Environment
|
||||
"production": {
|
||||
"name": "web-production",
|
||||
"routes": [
|
||||
{
|
||||
"pattern": "app.buster.so",
|
||||
"custom_domain": true
|
||||
}
|
||||
],
|
||||
// "routes": [
|
||||
// {
|
||||
// "pattern": "app.buster.so",
|
||||
// "custom_domain": true
|
||||
// }
|
||||
// ],
|
||||
"vars": {
|
||||
"VITE_PUBLIC_API_URL": "https://api.buster.so",
|
||||
"VITE_PUBLIC_URL": "https://platform.buster.so",
|
||||
|
|
Loading…
Reference in New Issue