add sql scripts for table items bq load (#412) #25
Workflow file for this run
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: Copy images to dockerhub on release | |
on: | |
push: | |
branches: | |
# aptos-indexer-processors network-specific release branches | |
- aptos-indexer-processors-devnet | |
- aptos-indexer-processors-testnet | |
- aptos-indexer-processors-mainnet | |
tags: | |
- aptos-indexer-processors-v* | |
permissions: | |
contents: read | |
id-token: write #required for GCP Workload Identity federation | |
jobs: | |
copy-images-to-docker-hub: | |
strategy: | |
matrix: | |
language: ["rust"] | |
uses: ./.github/workflows/copy-processor-images-to-dockerhub.yaml | |
with: | |
processor_language: ${{ matrix.language }} | |
version_tag: ${{ github.ref_name }} | |
GIT_SHA: ${{ github.sha }} | |
secrets: inherit |