From fc27a2e9060489a8e3fb3dc7b7d2b10ce242b453 Mon Sep 17 00:00:00 2001 From: LongYinan Date: Mon, 30 Oct 2023 17:26:40 +0800 Subject: [PATCH 1/2] fix(core): description field in html template --- packages/frontend/core/.webpack/template.html | 9 +++------ packages/frontend/core/.webpack/webpack.config.ts | 4 ++++ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/packages/frontend/core/.webpack/template.html b/packages/frontend/core/.webpack/template.html index 64496348af..4c0ee95014 100644 --- a/packages/frontend/core/.webpack/template.html +++ b/packages/frontend/core/.webpack/template.html @@ -12,14 +12,14 @@ - + - + - + Date: Mon, 30 Oct 2023 17:27:59 +0800 Subject: [PATCH 2/2] ci: reduce deployment events on pull requests --- .github/workflows/deploy.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ead24994cf..f95e9e7ce6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -9,7 +9,7 @@ on: workflow_dispatch: inputs: flavor: - description: 'Build type (canary, beta, internal or stable)' + description: 'Build type (canary, beta, or stable)' type: string default: canary @@ -40,7 +40,6 @@ jobs: build-core: name: Build @affine/core runs-on: ubuntu-latest - environment: production steps: - uses: actions/checkout@v4 @@ -68,7 +67,6 @@ jobs: build-storage: name: Build Storage runs-on: ubuntu-latest - environment: ${{ github.event.inputs.flavor }} steps: - uses: actions/checkout@v4 @@ -90,7 +88,6 @@ jobs: build-storage-arm64: name: Build Storage arm64 runs-on: ubuntu-latest - environment: ${{ github.event.inputs.flavor }} steps: - uses: actions/checkout@v4 @@ -112,7 +109,6 @@ jobs: build-docker: name: Build Docker runs-on: ubuntu-latest - environment: ${{ github.event.inputs.flavor }} needs: - build-server - build-core