From fad07d59ba765ffee088f3fc716170d8ad3b7176 Mon Sep 17 00:00:00 2001 From: lizzie Date: Thu, 20 Nov 2025 15:16:32 +0800 Subject: [PATCH 1/3] Add redirect to MEXC broker introduction in layout.erb --- source/layouts/layout.erb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/layouts/layout.erb b/source/layouts/layout.erb index 8e286d6..37d80f6 100644 --- a/source/layouts/layout.erb +++ b/source/layouts/layout.erb @@ -29,6 +29,11 @@ under the License. + + + <% if current_page.data.key?('meta') %> <% current_page.data.meta.each do |meta| %> Date: Thu, 20 Nov 2025 15:42:28 +0800 Subject: [PATCH 2/3] feat: new commit --- source/layouts/layout.erb | 1 - 1 file changed, 1 deletion(-) diff --git a/source/layouts/layout.erb b/source/layouts/layout.erb index 37d80f6..8eaaf3e 100644 --- a/source/layouts/layout.erb +++ b/source/layouts/layout.erb @@ -33,7 +33,6 @@ under the License. - <% if current_page.data.key?('meta') %> <% current_page.data.meta.each do |meta| %> Date: Thu, 20 Nov 2025 16:27:36 +0800 Subject: [PATCH 3/3] chore: cache v3 --- .github/workflows/build.yml | 2 +- .github/workflows/deploy.yml | 2 +- .github/workflows/dev_deploy.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ba682bd..c109a8b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: with: ruby-version: ${{ matrix.ruby-version }} - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: vendor/bundle key: gems-${{ runner.os }}-${{ matrix.ruby-version }}-${{ hashFiles('**/Gemfile.lock') }} diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4b82d83..011db72 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,7 +20,7 @@ jobs: with: ruby-version: ${{ env.ruby-version }} - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: vendor/bundle key: gems-${{ runner.os }}-${{ env.ruby-version }}-${{ hashFiles('**/Gemfile.lock') }} diff --git a/.github/workflows/dev_deploy.yml b/.github/workflows/dev_deploy.yml index 198640a..8b08d0a 100644 --- a/.github/workflows/dev_deploy.yml +++ b/.github/workflows/dev_deploy.yml @@ -35,7 +35,7 @@ jobs: with: ruby-version: ${{ env.ruby-version }} - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: vendor/bundle key: gems-${{ runner.os }}-${{ env.ruby-version }}-${{ hashFiles('**/Gemfile.lock') }}