Skip to content

Commit 153a970

Browse files
committed
ci: use forge soldeer with --skip-warnings for non-interactive push
1 parent 73190d1 commit 153a970

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,6 @@ jobs:
7171
- name: Install Foundry
7272
uses: foundry-rs/foundry-toolchain@v1
7373

74-
- name: Install Soldeer
75-
run: cargo install soldeer
76-
7774
- name: Publish to Soldeer registry
7875
env:
7976
SOLDEER_API_TOKEN: ${{ secrets.SOLDEER_API_TOKEN }}
@@ -84,7 +81,7 @@ jobs:
8481
fi
8582
VERSION=${{ needs.release.outputs.new_release_version }}
8683
echo "Publishing uint-quantization-lib~$VERSION to Soldeer..."
87-
soldeer push uint-quantization-lib~"$VERSION" 2>&1 | tee /tmp/soldeer-output.log
84+
forge soldeer push uint-quantization-lib~"$VERSION" --skip-warnings 2>&1 | tee /tmp/soldeer-output.log
8885
if grep -q "error during" /tmp/soldeer-output.log; then
8986
echo "::error::Soldeer push failed"
9087
exit 1

0 commit comments

Comments
 (0)