@@ -540,9 +540,9 @@ jobs:
540
540
docker run -d --rm --net=net-${{env.RELEASE_BRANCH_NAME}} \
541
541
-v `pwd`:/app \
542
542
--name test-node \
543
- ubuntu:22 .04 \
543
+ ubuntu:24 .04 \
544
544
/bin/sh -c "chmod +x /app/${{env.TEST_BIN_FILENAME}} && /app/${{env.TEST_BIN_FILENAME}} \
545
- --chain=frequency-bench \
545
+ --chain=frequency \
546
546
--rpc-external \
547
547
--rpc-cors=all \
548
548
--rpc-methods=Unsafe \
@@ -559,9 +559,9 @@ jobs:
559
559
docker run -d --rm --net=net-${{env.RELEASE_BRANCH_NAME}} \
560
560
-v `pwd`:/app \
561
561
--name ref-node \
562
- ubuntu:22 .04 \
562
+ ubuntu:24 .04 \
563
563
/bin/sh -c "chmod +x /app/${{env.REF_BIN_FILENAME}} && /app/${{env.REF_BIN_FILENAME}} \
564
- --chain=frequency-bench \
564
+ --chain=frequency \
565
565
--rpc-external \
566
566
--rpc-cors=all \
567
567
--rpc-methods=Unsafe \
@@ -585,7 +585,7 @@ jobs:
585
585
- name : Compare Metadata
586
586
timeout-minutes : 10
587
587
run : |
588
- CMD="docker run --pull always --net=net-${{env.RELEASE_BRANCH_NAME}} jacogr/polkadot-js-tools:0.57 .1 metadata ws://ref-node:9944 ws://test-node:9944"
588
+ CMD="docker run --pull always --net=net-${{env.RELEASE_BRANCH_NAME}} jacogr/polkadot-js-tools:0.59 .1 metadata ws://ref-node:9944 ws://test-node:9944"
589
589
echo -e "Running:\n$CMD"
590
590
$CMD >> ${{env.OUTPUT_DIR}}/${{env.OUTPUT_FILENAME}}
591
591
cat ${{env.OUTPUT_DIR}}/${{env.OUTPUT_FILENAME}} | egrep -n -i ''
@@ -718,6 +718,12 @@ jobs:
718
718
pattern : artifacts-*-${{github.run_id}}
719
719
path : /tmp
720
720
merge-multiple : true
721
+ - name : Download api-augment artifacts
722
+ id : download-js
723
+ uses : actions/download-artifact@v4
724
+ with :
725
+ name : js-api-augment-${{github.run_id}}
726
+ path : /tmp/polkadot-api-types-json
721
727
- name : List Downloaded Artifacts
722
728
working-directory : /tmp
723
729
run : |
@@ -763,6 +769,7 @@ jobs:
763
769
files : |
764
770
/tmp/frequency*.*
765
771
/tmp/metadata-compare-*
772
+ /tmp/polkadot-api-types-json/json/types.json
766
773
- name : Publish Full Release on GitHub
767
774
if : steps.is-full-release.outputs.is-full-release == 'true'
768
775
uses : softprops/action-gh-release@9d7c94cfd0a1f3ed45544c887983e9fa900f0564
@@ -772,6 +779,7 @@ jobs:
772
779
files : |
773
780
/tmp/frequency*.*
774
781
/tmp/metadata-compare-*
782
+ /tmp/polkadot-api-types-json/json/types.json
775
783
- name : Get Latest Commit
776
784
id : get-latest-commit
777
785
run : |
0 commit comments