Run CI to update coordinator on mpc-prod (#136) #594
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 deployment ref number | |
on: [push] | |
jobs: | |
update-deployment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Repository Dispatch | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
token: ${{ secrets.GIT_HUB_TOKEN }} | |
repository: worldcoin/mpc-uniqueness-check-deploy | |
event-type: update-ref | |
client-payload: | | |
{ | |
"sha": "${{ github.sha }}", | |
"ref": "${{ github.ref }}", | |
"ref_name": "${{ github.ref_name }}", | |
"ref_type": "${{ github.ref_type }}", | |
"repository": "${{ github.repository }}", | |
"default_branch": "${{ github.event.repository.default_branch }}" | |
} |