Skip to content

Commit 7327a53

Browse files
committed
Update CI/CD Crate Registry
1 parent 4073abe commit 7327a53

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

.github/workflows/update-registry-main.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,12 @@ jobs:
3838
chmod +x stoml
3939
4040
source source/.env.dist
41-
wget -qO sui https://github.com/MystenLabs/sui/releases/download/${SUI_VERSION}/sui
42-
echo "installed"
41+
42+
wget -qO sui_folder.tgz https://github.com/MystenLabs/sui/releases/download/${SUI_VERSION}/sui-${SUI_VERSION}-ubuntu-x86_64.tgz
43+
tar -xzf sui_folder.tgz
44+
cp target/release/sui-ubuntu-x86_64 sui
4345
chmod +x sui
46+
echo "installed"
4447
4548
- name: Build Packages
4649
run: |

.github/workflows/update-registry-test.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,12 @@ jobs:
3838
chmod +x stoml
3939
4040
source source/.env.dist
41-
wget -qO sui https://github.com/MystenLabs/sui/releases/download/${SUI_VERSION}/sui
42-
echo "installed"
41+
42+
wget -qO sui_folder.tgz https://github.com/MystenLabs/sui/releases/download/${SUI_VERSION}/sui-${SUI_VERSION}-ubuntu-x86_64.tgz
43+
tar -xzf sui_folder.tgz
44+
cp target/release/sui-ubuntu-x86_64 sui
4345
chmod +x sui
46+
echo "installed"
4447
4548
- name: Build Packages
4649
run: |

bin/build.sh

+10
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,16 @@ cd ./utils
3333
${sui} move build
3434
cd ..
3535

36+
ls
37+
38+
cd ./critbit
39+
${sui} move build
40+
cd ..
41+
42+
cd ./originmate
43+
${sui} move build
44+
cd ..
45+
3646
cd ./kiosk
3747
${sui} move build
3848
cd ..

0 commit comments

Comments
 (0)