Skip to content

Commit

Permalink
change build name
Browse files Browse the repository at this point in the history
  • Loading branch information
lonerapier committed Nov 4, 2024
1 parent 5dd231b commit bb86471
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
run: |
# Fetch the latest successful run of the build-circuits workflow on main
# Fetch the latest successful run of the build-artifacts workflow on main
response=$(gh api -X GET /repos/${{ github.repository }}/actions/workflows/artifacts.yaml/runs \
-f status=success -q '.workflow_runs | map(select(.name == "build-circuits")) | .[0].id')
-f status=success -q '.workflow_runs | map(select(.name == "build-artifacts")) | .[0].id')
echo "run_id=${response}" >> $GITHUB_ENV
- name: Download Build Artifacts
Expand All @@ -58,7 +58,7 @@ jobs:
echo "Automated release of compiled Circom circuits" > release_notes.md
echo "Version: ${{ env.VERSION }}" >> release_notes.md
echo "Commit: ${{ github.sha }}" >> release_notes.md
echo "\nArtifacts included:" >> release_notes.md
echo "Artifacts included:" >> release_notes.md
for zip in artifacts/circom-artifacts-*-v${{ env.VERSION }}.zip; do
basename "$zip" >> release_notes.md
done
Expand Down

0 comments on commit bb86471

Please sign in to comment.