We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 976131d commit f52ea2aCopy full SHA for f52ea2a
.github/actions/checkpoint-sync/action.yaml
@@ -30,9 +30,9 @@ runs:
30
run: |
31
beacon_node=""
32
if [[ ${{ inputs.network }} == "mainnet" ]]; then
33
- beacon_node="http://testing.mainnet.beacon-api.nimbus.team/"
+ beacon_node="{{ $secrets.MAINNET_BEACON_API_URL }}"
34
elif [[ ${{ inputs.network }} == "holesky" ]]; then
35
- beacon_node="http://testing.holesky.beacon-api.nimbus.team/"
+ beacon_node="{{ $secrets.HOLESKY_BEACON_API_URL }}"
36
else
37
echo "Unsupported network: ${{ inputs.network }}"
38
exit 1
0 commit comments