fix(ci): remove import path from type names on compact-codec (#12125)

This commit is contained in:
joshieDo
2024-10-28 19:13:43 +09:00
committed by GitHub
parent 0f86287b65
commit e4bd13534d
2 changed files with 4 additions and 2 deletions

View File

@ -36,7 +36,9 @@ jobs:
ref: ${{ github.base_ref || 'main' }}
# On `main` branch, generates test vectors and serializes them to disk using `Compact`.
- name: Generate compact vectors
run: ${{ matrix.bin }} -- test-vectors compact --write
run: |
${{ matrix.bin }} -- test-vectors compact --write &&
for f in ./testdata/micro/compact/*; do mv "$f" "$(dirname "$f")/$(basename "$f" | awk -F '__' '{print $NF}')"; done
- name: Checkout PR
uses: actions/checkout@v4
with: