ensure that ony the user defined as assignee on ceremnoy PR can finis… #29
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: Verify contribution | |
on: | |
push: | |
branches: | |
- ceremony/* | |
jobs: | |
compile-and-prepare: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
ref: ${{ github.ref }} | |
- name: Checkout LFS objects | |
run: git lfs checkout | |
- name: Run toolkit | |
run: | | |
docker build -q -t vocdoni/zk-voceremony --target zk-voceremony . | |
docker run --rm -qt --env-file ./ceremony.env vocdoni/zk-voceremony verify |