-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add a CI workflow to publish the bitcoinsim image #19
feat: add a CI workflow to publish the bitcoinsim image #19
Conversation
@@ -23,7 +23,7 @@ if [[ ! -d "$BITCOIN_DATA" ]]; then | |||
fi | |||
echo "Generating bitcoin.conf file at $BITCOIN_CONF" | |||
if [[ "$BITCOIN_NETWORK" == "testnet" ]]; then | |||
NETWORK_LABEL="test" | |||
NETWORK_LABEL="test" # [test] not [testnet] for testnet3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what does this mean?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this comment said for the Bitcoin network we need to set test
for testnet3
in the bitcoin.conf
.
anyway, we can remove it since we only support signet
now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
where is bitcoin.conf? i cannot find it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Summary
This PR adds a CI workflow that publishes the
bitcoinsim
docker image when changes are made to thecontrib/images/bitcoindsim/
directory.Test Plan
Update the
Dockerfile
orwrapper.sh
and thenbitcoindsim
image should be published to the Babylon docker hub.