Syncoor - Generate Index #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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: 'test-reports' | |
| type: string | |
| env: | |
| INSTALL_RCLONE_VERSION: v1.68.2 | |
| jobs: | |
| generate-index: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: "generate-index" | |
| cancel-in-progress: true | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - 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 }} |