Update aptos-protos to upstream branch test5 #7
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: Update Processor SDK Version | |
'on': | |
push: | |
branches: | |
- main | |
paths: | |
# Be conservative and only run this workflow when the Cargo.toml file changes. | |
- aptos-indexer-processors-sdk/Cargo.toml | |
pull_request: | |
branches: | |
- main | |
paths: | |
# Be conservative and only run this workflow when the Cargo.toml file changes. | |
- aptos-indexer-processors-sdk/Cargo.toml | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Capture the commit hash | |
id: commit_hash | |
run: | | |
# Echo the commit hash to the output | |
echo "::set-output name=commit_hash::$(echo $GITHUB_SHA)" | |
# Echo the PR branch name to the output | |
echo "::set-output name=branch_name::${{ github.head_ref }}" | |
- name: Setup Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Install toml | |
run: cargo install toml-cli | |
- name: Capture aptos-protos commit hash | |
id: aptos_protos_commit_hash | |
run: | | |
cd aptos-indexer-processors-sdk | |
aptos_protos_commit_hash=$(toml get Cargo.toml workspace.dependencies.aptos-protos.rev) | |
echo "::set-output name=aptos_protos_commit_hash::${aptos_protos_commit_hash}" | |
- name: Dispatch Event to processors Repo | |
uses: peter-evans/[email protected] | |
with: | |
token: ${{ secrets.CI_TOKEN }} | |
repository: 'larry-aptos/aptos-indexer-processors' | |
event-type: 'sdk-dependency-update' | |
client-payload: '{"commit_hash": "${{ github.sha }}", "branch_name": "${{ steps.commit_hash.outputs.branch_name }}", "aptos_protos_commit_hash": ${{ steps.aptos_protos_commit_hash.outputs.aptos_protos_commit_hash }}}' |