From 6a7d5b108992b998dcafe2b869fa70f807e79a2c Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Mon, 15 Aug 2022 14:14:55 +0000 Subject: [PATCH] escaping for values in execution matrix --- --- a/.github/workflows/fork-update-withdata.yml +++ b/.github/workflows/fork-update-withdata.yml @@ -47,9 +47,9 @@ id: create_matrix with: matrix: | - network {Opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.OPAL_MAINNET_TAG }}}, fork_from_address {wss://eu-ws-opal.unique.network:443} - network {Quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}, fork_from_address {wss://eu-ws-quartz.unique.network:443} - network {Unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}, fork_from_address {wss://eu-ws.unique.network:443} + network {Opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.OPAL_MAINNET_TAG }}}, fork_from_address {'wss://eu-ws-opal.unique.network:443'} + network {Quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}, fork_from_address {'wss://eu-ws-quartz.unique.network:443'} + network {Unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}, fork_from_address {'wss://eu-ws.unique.network:443'} --- a/.github/workflows/try-runtime.yml +++ b/.github/workflows/try-runtime.yml @@ -64,9 +64,9 @@ id: create_matrix with: matrix: | - network {Opal}, features {opal-runtime}, fork_from_address {wss://eu-ws-opal.unique.network:443} - network {Quartz}, features {quartz-runtime}, fork_from_address {wss://eu-ws-quartz.unique.network:443} - network {Unique}, features {unique-runtime}, fork_from_address {wss://eu-ws.unique.network:443} + network {Opal}, features {opal-runtime}, fork_from_address {'wss://eu-ws-opal.unique.network:443'} + network {Quartz}, features {quartz-runtime}, fork_from_address {'wss://eu-ws-quartz.unique.network:443'} + network {Unique}, features {unique-runtime}, fork_from_address {'wss://eu-ws.unique.network:443'} -- gitstuff