diff --git a/.github/deploy/bootstrap.sh b/.github/deploy/bootstrap.sh new file mode 100755 index 000000000..df82332cd --- /dev/null +++ b/.github/deploy/bootstrap.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +set -e diff --git a/.github/deploy/devbox.json b/.github/deploy/devbox.json new file mode 100644 index 000000000..4e34c27bc --- /dev/null +++ b/.github/deploy/devbox.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.7/.schema/devbox.schema.json", + "packages": ["go@latest", "cargo@latest", "uv@latest", "bun@latest"], + "env": { + "PATH": "$HOME/.cargo/bin:$HOME/go/bin:$HOME/.local/bin:$HOME/.bun/bin:$PATH", + "GITHUB_TOKEN": "$GITHUB_TOKEN", + "GOPATH": "$HOME/go", + "GOBIN": "$GOPATH/bin", + "GHQ_ROOT": "$CLONEDIR" + }, + "shell": { + "init_hook": [], + "scripts": { + "test": ["echo \"Error: no test specified\" && exit 1"] + } + } +} diff --git a/.github/deploy/process-compose.yaml b/.github/deploy/process-compose.yaml new file mode 100644 index 000000000..4f72402cc --- /dev/null +++ b/.github/deploy/process-compose.yaml @@ -0,0 +1,23 @@ +version: "0.5" + +processes: + IPFS: + namespace: testnet + command: "ipfs daemon --mount" + ready_log_line: "Daemon is ready" + + Sonr: + namespace: testnet + command: "task sonrd:start" + depends_on: + IPFS: + condition: process_log_ready + + Hway: + namespace: testnet + command: "hway" + depends_on: + IPFS: + condition: process_log_ready + Sonr: + condition: process_started diff --git a/.github/workflows/release-post.yml b/.github/workflows/release-post.yml index 7bd0f42ed..73ec2c2a1 100644 --- a/.github/workflows/release-post.yml +++ b/.github/workflows/release-post.yml @@ -63,4 +63,4 @@ jobs: restore-keys: | mkdocs-material- - run: pip install mkdocs-material - - run: mkdocs gh-deploy --force + - run: cd docs && mkdocs gh-deploy --force