Run index preparation #219
This file contains 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: Run index preparation | |
# This workflow is based on, but diverges from the example here: | |
# https://docs.docker.com/build/ci/github-actions/multi-platform/#distribute-build-across-multiple-runners | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
schedule: | |
- cron: '0 0 * * 1,2,3,4,5' | |
workflow_dispatch: | |
jobs: | |
run-index-prep: | |
strategy: | |
# fail if any build fails | |
fail-fast: false | |
# build amd64 and arm64 in parallel | |
matrix: | |
include: | |
- config_active: "2022Q4" | |
data_share_path: "2022Q4_20240426T113151Z" | |
- config_active: "2023Q4" | |
data_share_path: "2023Q4_20240424T120055Z" | |
uses: ./.github/workflows/run-index-preparation.yml | |
secrets: inherit | |
with: | |
image-tag: main | |
data-share-path: ${{ matrix.data_share_path }} | |
config_active: ${{ matrix.config_active }} |