git.delta.rocks / unique-network / refs/commits / 6a7d5b108992

difftreelog

escaping for values in execution matrix

Alexander Aksenov2022-08-15parent: #94c28c0.patch.diff
in: master

2 files changed

modified.github/workflows/fork-update-withdata.ymldiffbeforeafterboth
--- 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'}
 
 
 
modified.github/workflows/try-runtime.ymldiffbeforeafterboth
63 uses: fabiocaccamo/create-matrix-action@v263 uses: fabiocaccamo/create-matrix-action@v2
64 id: create_matrix64 id: create_matrix
65 with:65 with:
66 matrix: |66 matrix: |
67 network {Opal}, features {opal-runtime}, fork_from_address {wss://eu-ws-opal.unique.network:443}67 network {Opal}, features {opal-runtime}, fork_from_address {'wss://eu-ws-opal.unique.network:443'}
68 network {Quartz}, features {quartz-runtime}, fork_from_address {wss://eu-ws-quartz.unique.network:443}68 network {Quartz}, features {quartz-runtime}, fork_from_address {'wss://eu-ws-quartz.unique.network:443'}
69 network {Unique}, features {unique-runtime}, fork_from_address {wss://eu-ws.unique.network:443}69 network {Unique}, features {unique-runtime}, fork_from_address {'wss://eu-ws.unique.network:443'}
7070
7171
7272