We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73190d1 commit 153a970Copy full SHA for 153a970
.github/workflows/release.yml
@@ -71,9 +71,6 @@ jobs:
71
- name: Install Foundry
72
uses: foundry-rs/foundry-toolchain@v1
73
74
- - name: Install Soldeer
75
- run: cargo install soldeer
76
-
77
- name: Publish to Soldeer registry
78
env:
79
SOLDEER_API_TOKEN: ${{ secrets.SOLDEER_API_TOKEN }}
@@ -84,7 +81,7 @@ jobs:
84
81
fi
85
82
VERSION=${{ needs.release.outputs.new_release_version }}
86
83
echo "Publishing uint-quantization-lib~$VERSION to Soldeer..."
87
- soldeer push uint-quantization-lib~"$VERSION" 2>&1 | tee /tmp/soldeer-output.log
+ forge soldeer push uint-quantization-lib~"$VERSION" --skip-warnings 2>&1 | tee /tmp/soldeer-output.log
88
if grep -q "error during" /tmp/soldeer-output.log; then
89
echo "::error::Soldeer push failed"
90
exit 1
0 commit comments