Skip to content

Commit

Permalink
Fix ci.
Browse files Browse the repository at this point in the history
  • Loading branch information
SoraSuegami committed Oct 20, 2023
1 parent 8a201fd commit c059075
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
run: wget https://github.com/iden3/circom/releases/latest/download/circom-linux-amd64 -O /usr/local/bin/circom
- name: Download circom (Windows)
if: ${{ matrix.os == 'windows-latest'}}
run: curl https://github.com/iden3/circom/releases/latest/download/circom-windows-amd64.exe -O /usr/local/bin/circom
run: curl https://github.com/iden3/circom/releases/latest/download/circom-windows-amd64.exe -o /usr/local/bin/circom
- name: Download circom (Macos)
if: ${{ matrix.os == 'macos-latest'}}
run: curl https://github.com/iden3/circom/releases/latest/download/circom-macos-amd64 -O /usr/local/bin/circom
run: curl https://github.com/iden3/circom/releases/latest/download/circom-macos-amd64 -o /usr/local/bin/circom
- name: Update permission
run: chmod +x /usr/local/bin/circom
- name: Install yarn
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
run: wget https://github.com/iden3/circom/releases/latest/download/circom-linux-amd64 -O /usr/local/bin/circom
- name: Download circom (Windows)
if: ${{ matrix.os == 'windows-latest'}}
run: curl https://github.com/iden3/circom/releases/latest/download/circom-windows-amd64.exe -O /usr/local/bin/circom
run: curl https://github.com/iden3/circom/releases/latest/download/circom-windows-amd64.exe -o /usr/local/bin/circom
- name: Download circom (Macos)
if: ${{ matrix.os == 'macos-latest'}}
run: curl https://github.com/iden3/circom/releases/latest/download/circom-macos-amd64 -O /usr/local/bin/circom
run: curl https://github.com/iden3/circom/releases/latest/download/circom-macos-amd64 -o /usr/local/bin/circom
- name: Update permission
run: chmod +x /usr/local/bin/circom
- name: Install yarn
Expand Down

0 comments on commit c059075

Please sign in to comment.