git.delta.rocks / unique-network / refs/commits / d50b1a1c09d5

difftreelog

test polkadot-types workflow

Unique2022-12-22parent: #c4370a6.patch.diff
in: master

2 files changed

modified.github/workflows/polkadot-types.ymldiffbeforeafterboth
7575
76 - name: Run generate_types_package script76 - name: Run generate_types_package script
77 working-directory: tests77 working-directory: tests
78 run: |78 run: |
79 yarn install79 yarn install
80 /bin/bash ./scripts/wait_for_first_block.sh80 /bin/bash ./scripts/wait_for_first_block.sh
81 git config user.name "Unique"81 git config --global user.name "Unique"
82 git config user.email github-actions@usetech.com 82 git config --global user.email github-actions@usetech.com
83 /bin/bash ./scripts/generate_types_package.sh --release ${{ matrix.usage }}83 /bin/bash ./scripts/generate_types_package.sh --release ${{ matrix.usage }}
84 env:84 env:
85 RPC_URL: http://127.0.0.1:9933/85 RPC_URL: http://127.0.0.1:9933/
8686
modifiedtests/scripts/generate_types_package.shdiffbeforeafterboth
--- a/tests/scripts/generate_types_package.sh
+++ b/tests/scripts/generate_types_package.sh
@@ -6,8 +6,8 @@
 TEMPLATE=$DIR/types_template
 GIT_REPO=git@github.com:UniqueNetwork/unique-types-js.git
 
-git config user.name "Unique"
-git config user.email "github-actions@usetech.com"
+# git config user.name "Unique"
+# git config user.email "github-actions@usetech.com"
 
 . $DIR/functions.sh