Skip to content

Commit

Permalink
[B-1366] Add GH action to trigger mpc-uniqueness-check-deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
mircobordoni committed Jan 30, 2024
1 parent 4693239 commit baa7e3b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/update-deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Update deployment ref number

on: [push]

jobs:
update-deployment:
runs-on: ubuntu-latest

steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v2
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 }}"
}

0 comments on commit baa7e3b

Please sign in to comment.