From 55565b8b09767fecc0551fff8750c4bd7bd14ad2 Mon Sep 17 00:00:00 2001 From: Facundo Date: Mon, 18 Mar 2024 10:33:04 +0100 Subject: [PATCH 1/4] fix: docs ci --- tutorials-script.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 tutorials-script.sh diff --git a/tutorials-script.sh b/tutorials-script.sh old mode 100644 new mode 100755 From b61b6110250db9fc9c356cd4311df02dbe1f4207 Mon Sep 17 00:00:00 2001 From: Facundo Date: Mon, 18 Mar 2024 10:40:14 +0100 Subject: [PATCH 2/4] do a simple test --- .github/workflows/test-deploy.yml | 4 ++++ tutorials-script.sh | 3 +++ 2 files changed, 7 insertions(+) diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml index 428b51327..94f42768e 100644 --- a/.github/workflows/test-deploy.yml +++ b/.github/workflows/test-deploy.yml @@ -12,6 +12,10 @@ jobs: with: node-version: 16.x cache: npm + - name: Run Tutorials Script + run: | + chmod +x tutorials-script.sh + ./tutorials-script.sh - run: yarn install --frozen-lockfile - run: yarn build - run: sh ./vue-docs.sh diff --git a/tutorials-script.sh b/tutorials-script.sh index ebb97b383..684457d2d 100755 --- a/tutorials-script.sh +++ b/tutorials-script.sh @@ -1,3 +1,6 @@ +echo "test" +return "test 2" + REMOTE_REPO_URL="https://github.com/cosmos/sdk-tutorials.git" WORK_DIR=$(pwd) From 94c2a64f8dc703e591d6c78f2772ebf3ee6c870c Mon Sep 17 00:00:00 2001 From: Facundo Date: Mon, 18 Mar 2024 10:41:20 +0100 Subject: [PATCH 3/4] confirmed that it worked --- .github/workflows/test-deploy.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml index 94f42768e..428b51327 100644 --- a/.github/workflows/test-deploy.yml +++ b/.github/workflows/test-deploy.yml @@ -12,10 +12,6 @@ jobs: with: node-version: 16.x cache: npm - - name: Run Tutorials Script - run: | - chmod +x tutorials-script.sh - ./tutorials-script.sh - run: yarn install --frozen-lockfile - run: yarn build - run: sh ./vue-docs.sh From 5000cdf4b833450dd266d335a605fe77695bd3b4 Mon Sep 17 00:00:00 2001 From: Facundo Date: Mon, 18 Mar 2024 10:41:45 +0100 Subject: [PATCH 4/4] remove test --- tutorials-script.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/tutorials-script.sh b/tutorials-script.sh index 684457d2d..ebb97b383 100755 --- a/tutorials-script.sh +++ b/tutorials-script.sh @@ -1,6 +1,3 @@ -echo "test" -return "test 2" - REMOTE_REPO_URL="https://github.com/cosmos/sdk-tutorials.git" WORK_DIR=$(pwd)