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 3e1e261 commit 60e3a41Copy full SHA for 60e3a41
.github/workflows/update-params.yaml
@@ -0,0 +1,26 @@
1
+name: Update parameters
2
+
3
+on:
4
+ schedule:
5
+ # Every night at 0:00 UTC
6
+ - cron: '0 0 * * *'
7
+ workflow_dispatch: {}
8
9
+env:
10
+ BLOCKFROST_PROJECT_ID: ${{ secrets.BLOCKFROST_PROJECT_ID_MAINNET }}
11
12
+jobs:
13
+ update_parameters:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Git checkout
17
+ uses: actions/checkout@v4
18
19
+ - name: Update parameters
20
+ run: ./fetch-params.sh mainnet
21
22
+ - name: Commit updated files
23
+ uses: EndBug/add-and-commit@v9
24
+ with:
25
+ default_author: github_actions
26
+ message: "build: Update protocol parameters [auto]"
0 commit comments