-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 1.02 KB
/
syncoor-generate-index.yaml
File metadata and controls
40 lines (35 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Syncoor - Generate Index
on:
workflow_dispatch:
inputs:
s3-bucket:
description: 'S3 bucket to use'
required: false
default: 'ethpandaops-syncoor-data'
type: string
s3-path:
description: 'Path to the reports in S3 bucket'
required: false
default: 'networks/none'
type: string
env:
INSTALL_RCLONE_VERSION: v1.68.2
jobs:
generate-index:
runs-on: ubuntu-latest
concurrency:
group: "generate-index-${{ inputs.s3-path }}"
cancel-in-progress: true
steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Run Index Generator
uses: ethpandaops/syncoor@master
with:
run-tests: false
s3-upload: true
s3-bucket: ${{ inputs.s3-bucket }}
s3-path: ${{ inputs.s3-path }}
s3-index-generate: true
rclone-config: ${{ secrets.SYNCOOR_RCLONE_CONFIG }}
rclone-version: ${{ env.INSTALL_RCLONE_VERSION }}