mirror of
https://github.com/selfxyz/self.git
synced 2026-02-19 02:24:25 -05:00
* update scripts * deploy vc and disclose id * fix the deployment scripts on staging * update yarn.lock
13 lines
468 B
Bash
Executable File
13 lines
468 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Create directories if they don't exist
|
|
mkdir -p ignition/deployments/staging/artifacts
|
|
|
|
# Copy deployed_addresses.json
|
|
cp ignition/deployments/chain-44787/deployed_addresses.json ignition/deployments/staging/deployed_addresses.json
|
|
|
|
# Copy all artifacts from chain-44787 to staging
|
|
cp -r ignition/deployments/chain-44787/artifacts/* ignition/deployments/staging/artifacts/
|
|
|
|
echo "Successfully exported chain-44787 deployment files to staging directory"
|