fix(deploy): install forced archive builds for OpenClaw plugin
This commit is contained in:
parent
dbb7cbfc93
commit
bec9567f13
56
.github/workflows/deploy.yml
vendored
56
.github/workflows/deploy.yml
vendored
@ -48,11 +48,10 @@ jobs:
|
|||||||
SSH_HOST: ubuntu@openclaw.svc.plus
|
SSH_HOST: ubuntu@openclaw.svc.plus
|
||||||
PLUGIN_NAME: openclaw-multi-session-plugins
|
PLUGIN_NAME: openclaw-multi-session-plugins
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout published source
|
- name: Checkout source
|
||||||
if: github.event_name == 'workflow_run'
|
|
||||||
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
|
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event.workflow_run.head_sha }}
|
ref: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.head_sha || github.ref }}
|
||||||
|
|
||||||
- name: Load Vault secrets
|
- name: Load Vault secrets
|
||||||
id: vault
|
id: vault
|
||||||
@ -101,26 +100,49 @@ jobs:
|
|||||||
id: install
|
id: install
|
||||||
env:
|
env:
|
||||||
VERSION: ${{ steps.version.outputs.value }}
|
VERSION: ${{ steps.version.outputs.value }}
|
||||||
|
FORCE: ${{ inputs.force || 'false' }}
|
||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
PACKAGE="${PLUGIN_NAME}@${VERSION}"
|
PACKAGE="${PLUGIN_NAME}@${VERSION}"
|
||||||
if npm view "${PACKAGE}" version >/dev/null 2>&1; then
|
if [ "${FORCE}" != "true" ] && npm view "${PACKAGE}" version >/dev/null 2>&1; then
|
||||||
PUBLISHED="$(npm view "${PACKAGE}" version)"
|
PUBLISHED="$(npm view "${PACKAGE}" version)"
|
||||||
echo "::notice::${PLUGIN_NAME}@${PUBLISHED} is available on npm"
|
echo "::notice::${PLUGIN_NAME}@${PUBLISHED} is available on npm"
|
||||||
echo "source=npm" >> "$GITHUB_OUTPUT"
|
echo "source=npm" >> "$GITHUB_OUTPUT"
|
||||||
echo "install_spec=${PACKAGE}" >> "$GITHUB_OUTPUT"
|
echo "install_spec=${PACKAGE}" >> "$GITHUB_OUTPUT"
|
||||||
else
|
else
|
||||||
if [ "${{ github.event_name }}" = "workflow_run" ]; then
|
install_spec="/tmp/${PLUGIN_NAME}-${VERSION}-${GITHUB_SHA}.tgz"
|
||||||
ref="${{ github.event.workflow_run.head_sha }}"
|
echo "::warning::Building and installing ${install_spec} from the checked-out source"
|
||||||
else
|
echo "source=archive" >> "$GITHUB_OUTPUT"
|
||||||
ref="${GITHUB_REF_NAME:-release/v${VERSION}}"
|
|
||||||
fi
|
|
||||||
install_spec="git+${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git#${ref}"
|
|
||||||
echo "::warning::${PACKAGE} is not published to npm yet; installing from ${install_spec}"
|
|
||||||
echo "source=github" >> "$GITHUB_OUTPUT"
|
|
||||||
echo "install_spec=${install_spec}" >> "$GITHUB_OUTPUT"
|
echo "install_spec=${install_spec}" >> "$GITHUB_OUTPUT"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
- name: Setup Node
|
||||||
|
if: steps.install.outputs.source == 'archive'
|
||||||
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
|
||||||
|
with:
|
||||||
|
node-version: 22
|
||||||
|
|
||||||
|
- name: Setup pnpm
|
||||||
|
if: steps.install.outputs.source == 'archive'
|
||||||
|
run: |
|
||||||
|
corepack enable
|
||||||
|
corepack prepare pnpm@10.28.2 --activate
|
||||||
|
|
||||||
|
- name: Build archive install source
|
||||||
|
id: archive
|
||||||
|
if: steps.install.outputs.source == 'archive'
|
||||||
|
env:
|
||||||
|
VERSION: ${{ steps.version.outputs.value }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
pnpm install --frozen-lockfile
|
||||||
|
pnpm test
|
||||||
|
pnpm typecheck
|
||||||
|
pnpm pack
|
||||||
|
tarball="${PLUGIN_NAME}-${VERSION}.tgz"
|
||||||
|
test -f "${tarball}"
|
||||||
|
echo "tarball=${tarball}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- name: Configure SSH key
|
- name: Configure SSH key
|
||||||
env:
|
env:
|
||||||
OPENCLAW_SSH_KEY: ${{ steps.vault.outputs.OPENCLAW_SSH_KEY }}
|
OPENCLAW_SSH_KEY: ${{ steps.vault.outputs.OPENCLAW_SSH_KEY }}
|
||||||
@ -155,6 +177,12 @@ jobs:
|
|||||||
ssh -i ~/.ssh/openclaw_ed25519 -o BatchMode=yes -o ConnectTimeout=10 \
|
ssh -i ~/.ssh/openclaw_ed25519 -o BatchMode=yes -o ConnectTimeout=10 \
|
||||||
"${SSH_HOST}" 'echo "connected to $(hostname) as $(whoami)"'
|
"${SSH_HOST}" 'echo "connected to $(hostname) as $(whoami)"'
|
||||||
|
|
||||||
|
- name: Upload archive install source
|
||||||
|
if: steps.install.outputs.source == 'archive'
|
||||||
|
run: |
|
||||||
|
scp -i ~/.ssh/openclaw_ed25519 -o BatchMode=yes \
|
||||||
|
"${{ steps.archive.outputs.tarball }}" "${SSH_HOST}:${{ steps.install.outputs.install_spec }}"
|
||||||
|
|
||||||
- name: Install or update plugin on remote host
|
- name: Install or update plugin on remote host
|
||||||
env:
|
env:
|
||||||
VERSION: ${{ steps.version.outputs.value }}
|
VERSION: ${{ steps.version.outputs.value }}
|
||||||
@ -213,7 +241,8 @@ jobs:
|
|||||||
|
|
||||||
install_plugin() {
|
install_plugin() {
|
||||||
if command -v openclaw >/dev/null 2>&1; then
|
if command -v openclaw >/dev/null 2>&1; then
|
||||||
openclaw plugins install "${INSTALL_SPEC}" \
|
openclaw plugins install --force "${INSTALL_SPEC}" \
|
||||||
|
|| openclaw plugins install "${INSTALL_SPEC}" \
|
||||||
|| openclaw plugins update "${INSTALL_SPEC}" \
|
|| openclaw plugins update "${INSTALL_SPEC}" \
|
||||||
|| npm install -g "${INSTALL_SPEC}"
|
|| npm install -g "${INSTALL_SPEC}"
|
||||||
else
|
else
|
||||||
@ -225,6 +254,7 @@ jobs:
|
|||||||
|
|
||||||
if command -v openclaw >/dev/null 2>&1; then
|
if command -v openclaw >/dev/null 2>&1; then
|
||||||
openclaw plugins enable "${PLUGIN_NAME}" || true
|
openclaw plugins enable "${PLUGIN_NAME}" || true
|
||||||
|
systemctl --user restart openclaw-gateway.service || true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Verify the installed version matches the requested version.
|
# Verify the installed version matches the requested version.
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "openclaw-multi-session-plugins",
|
"name": "openclaw-multi-session-plugins",
|
||||||
"version": "2026.6.2",
|
"version": "2026.6.1",
|
||||||
"description": "OpenClaw plugin for per-session workspace isolation and scoped XWorkmate artifact handling",
|
"description": "OpenClaw plugin for per-session workspace isolation and scoped XWorkmate artifact handling",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user