Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mlegner committed Jul 19, 2024
1 parent ee9be96 commit 9b45cac
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/update-binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,18 @@ jobs:
SUI_KEYSTORE: "${{ secrets.SUI_KEYSTORE }}"

- name: Create temporary directory
run: "mkdir -p bin"
run: "mkdir -p site"
- name: Download latest binaries
run: |
for arch in ubuntu-x86_64 macos-x86_64 macos-arm64; do
curl https://storage.googleapis.com/mysten-walrus-binaries/latest/walrus-latest-$arch -o walrus-$arch
curl https://storage.googleapis.com/mysten-walrus-binaries/latest/walrus-latest-$arch -o site/walrus-$arch
done
- name: Copy site-builder binary
run: "cp bin/site-builder site/site-builder-ubuntu-x86_64"

- name: Update Walrus Site
run: >
RUST_LOG=site_builder=debug,walrus=debug,info
site-builder
--config walrus-sites/site-builder/assets/builder-example.yaml
--list-directory
update bin ${{ vars.WALRUS_SITE_BIN_OBJECT }}
update --list-directory site ${{ vars.WALRUS_SITE_BIN_OBJECT }}

0 comments on commit 9b45cac

Please sign in to comment.