From 7f2095685206933e20235e0ac57e4b36b394b9eb Mon Sep 17 00:00:00 2001 From: marky ercillo Date: Fri, 2 Aug 2024 15:10:33 -0700 Subject: [PATCH 1/3] add step to commit the generated js --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7d77068..461b6aa 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -94,6 +94,9 @@ jobs: - attach_workspace: at: ~/rules_player - run: mkdir ~/.ssh/ && echo -e "Host github.com\n\tStrictHostKeyChecking no\n" > ~/.ssh/config + - run: + name: commit generated .js file + command: git add gh-pages/private/gh-pages.js && git commit -m "add generated .js" - run: name: Release command: yarn auto shipit -vv From dffc51ce822aa1bf85b0451cd490672abc5c4344 Mon Sep 17 00:00:00 2001 From: marky ercillo Date: Fri, 2 Aug 2024 15:26:16 -0700 Subject: [PATCH 2/3] removed generation of ts script --- .circleci/config.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 461b6aa..2160e47 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -67,9 +67,6 @@ jobs: steps: - attach_workspace: at: ~/rules_player - - run: - name: Build generated gh-page.js - command: yarn build:ts - persist_to_workspace: root: . paths: @@ -94,9 +91,6 @@ jobs: - attach_workspace: at: ~/rules_player - run: mkdir ~/.ssh/ && echo -e "Host github.com\n\tStrictHostKeyChecking no\n" > ~/.ssh/config - - run: - name: commit generated .js file - command: git add gh-pages/private/gh-pages.js && git commit -m "add generated .js" - run: name: Release command: yarn auto shipit -vv From 8f7d28639746bb5cda8e405ed48173b3eb28bac0 Mon Sep 17 00:00:00 2001 From: marky ercillo Date: Fri, 2 Aug 2024 15:35:11 -0700 Subject: [PATCH 3/3] removed generateScript --- .circleci/config.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2160e47..734e7b5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -62,17 +62,6 @@ jobs: paths: - . - generateScript: - executor: base - steps: - - attach_workspace: - at: ~/rules_player - - persist_to_workspace: - root: . - paths: - - . - - test: executor: base steps: @@ -111,13 +100,9 @@ workflows: requires: - install - - generateScript: - requires: - - build - - test: requires: - - generateScript + - build - release: context: