Skip to content

Commit b10a1e8

Browse files
committed
fix: fix token list path
Due to a limitation in the script, the full path is required
1 parent 5ee30c1 commit b10a1e8

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/updatePermitInfo.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,7 @@ jobs:
3838
TOKEN_LIST: src/public/${{ format(matrix.tokenList, matrix.chainId) }}
3939
run: |
4040
if [ -f "${{ env.TOKEN_LIST }}" ]; then
41-
yarn fetchPermitInfo -- ${{ matrix.chainId }} ${{ env.TOKEN_LIST }} ${{ env.RPC_URL }}
42-
else
43-
echo "This did not run. What's on `pwd`?"
44-
echo pwd
41+
yarn fetchPermitInfo -- ${{ matrix.chainId }} `pwd`/${{ env.TOKEN_LIST }} ${{ env.RPC_URL }}
4542
fi
4643
4744
- name: Check for changes

0 commit comments

Comments
 (0)