Skip to content

Syncoor - Generate Index #7045

Syncoor - Generate Index

Syncoor - Generate Index #7045

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 }}