File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
.github/actions/checkpoint-sync Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,16 @@ runs:
2727 docker build . -t ethpandaops/checkpointz:local;
2828 - name : Configure checkpointz
2929 shell : bash
30+ env :
31+ MAINNET_BEACON_API_URL : " ${{ secrets.MAINNET_BEACON_API_URL }}"
32+ HOLESKY_BEACON_API_URL : " ${{ secrets.HOLESKY_BEACON_API_URL }}"
33+
3034 run : |
3135 beacon_node=""
3236 if [[ ${{ inputs.network }} == "mainnet" ]]; then
33- beacon_node="{{ $secrets .MAINNET_BEACON_API_URL }}"
37+ beacon_node="$ {{ env .MAINNET_BEACON_API_URL }}"
3438 elif [[ ${{ inputs.network }} == "holesky" ]]; then
35- beacon_node="{{ $secrets .HOLESKY_BEACON_API_URL }}"
39+ beacon_node="$ {{ env .HOLESKY_BEACON_API_URL }}"
3640 else
3741 echo "Unsupported network: ${{ inputs.network }}"
3842 exit 1
You can’t perform that action at this time.
0 commit comments