Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Release Publish

on:
push:
branches:
- main

env:
IMAGE_NAME: bankofai/docs

jobs:
build-and-publish:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to Docker Hub
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
run: |
echo "$DOCKERHUB_TOKEN" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin

- name: Get version from package.json
id: version
run: echo "VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

- name: Set Docker tags
id: meta
run: |
echo "tags<<EOF" >> $GITHUB_OUTPUT
echo "${{ env.IMAGE_NAME }}:${{ steps.version.outputs.VERSION }}" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT

- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
APP_ENV=production
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64
2 changes: 1 addition & 1 deletion docs/llmservice/openclaw/integration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ After completing the onboarding wizard, you'll need to manually add your Bank of

There are two ways to complete the configuration:

- **One-Click Script**: https://docs.ainft.com/reference/openclaw-ainft-integration-one-click-script-tutorial
- **One-Click Script**: [Click here for the tutorial](https://docs.bankofai.io/llmservice/openclaw/one-click-script-tutorial/)
- **Manual Configuration**: Follow the instructions below

---
Expand Down
Loading
Loading