We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b3953f commit 69cd8ffCopy full SHA for 69cd8ff
.github/workflows/update-params.yaml
@@ -12,22 +12,15 @@ jobs:
12
update_parameters:
13
runs-on: ubuntu-latest
14
15
- strategy:
16
- matrix:
17
- network:
18
- - mainnet
19
- - preprod
20
- - preview
21
-
22
- concurrency:
23
- group: ${{ github.ref_name }}
24
25
steps:
26
- name: Git checkout
27
uses: actions/checkout@v4
28
29
- name: Update parameters
30
- run: ./fetch-params.sh "${{ matrix.network }}"
+ run: |
+ ./fetch-params.sh mainnet
+ ./fetch-params.sh preprod
+ ./fetch-params.sh preview
31
32
- name: Commit updated files
33
uses: EndBug/add-and-commit@v9
0 commit comments