chore: Add back double verify proof to test suite (#1986) #147
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
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
pull-requests: write | |
name: release-please | |
jobs: | |
release-please: | |
name: Create Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run Release Please | |
id: release | |
uses: google-github-actions/release-please-action@v3 | |
with: | |
command: manifest | |
- name: Dispatch to publish workflow | |
uses: benc-uk/workflow-dispatch@v1 | |
if: ${{ steps.release.outputs.tag_name }} | |
with: | |
workflow: publish.yml | |
repo: AztecProtocol/barretenberg | |
ref: master | |
token: ${{ secrets.GITHUB_TOKEN }} | |
inputs: '{ "tag": "${{ steps.release.outputs.tag_name }}", "publish": true }' | |