Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

fix: use the exact version for the hex crate (#546) #251

fix: use the exact version for the hex crate (#546)

fix: use the exact version for the hex crate (#546) #251

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release-please:
name: Create Release
outputs:
release-pr: ${{ steps.release.outputs.pr }}
tag-name: ${{ steps.release.outputs.tag_name }}
runs-on: ubuntu-latest
steps:
- name: Run release-please
id: release
uses: google-github-actions/release-please-action@v3
with:
token: ${{ secrets.ACVM_RELEASE_TOKEN }}
command: manifest
publish:
name: Publish crates
needs: [release-please]
if: ${{ needs.release-please.outputs.tag-name }}
runs-on: ubuntu-latest
steps:
- name: Dispatch to publish workflow
uses: benc-uk/workflow-dispatch@v1
with:
workflow: publish.yml
ref: master
inputs: '{ "acvm-ref": "${{ needs.release-please.outputs.tag-name }}" }'