Skip to content

Commit be9bbb2

Browse files
author
mike dupont
committed
update
1 parent 956d6a4 commit be9bbb2

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/image.yaml

+8-5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ jobs:
2727
id-token: write
2828
#
2929
steps:
30+
31+
# first we login
32+
- name: Login to Docker Hub
33+
uses: meta-introspector/login-action@v3
34+
with:
35+
username: ${{ vars.DOCKER_HUB_USERNAME }}
36+
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
37+
3038
- name: Checkout repository
3139
uses: meta-introspector/checkout@v4
3240
# Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
@@ -72,11 +80,6 @@ jobs:
7280
https://api.github.com/user/packages/container/${{ env.IMAGE_NAME }}/visibility \
7381
-d '{"visibility":"public"}'
7482
75-
- name: Login to Docker Hub
76-
uses: meta-introspector/login-action@v3
77-
with:
78-
username: ${{ vars.DOCKER_HUB_USERNAME }}
79-
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
8083
8184
- name: Build and push Docker images
8285
uses: meta-introspector/build-push-action@v6.10.0

agent/src/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import createGoatPlugin from "@elizaos/plugin-goat";
3939
import { DirectClient } from "@elizaos/client-direct";
4040
import createGoatPlugin from "@elizaos/plugin-goat";
4141
import { createNodePlugin } from "@elizaos/plugin-node";
42+
4243
import { solanaPlugin } from "@elizaos/plugin-solana";
4344
import { solanaAgentkitPlguin } from "@elizaos/plugin-solana-agentkit";
4445
//import { storyPlugin } from "@elizaos/plugin-story";
@@ -690,7 +691,7 @@ export async function createAgent(
690691
getSecret(character, "OPEN_WEATHER_API_KEY")
691692
? openWeatherPlugin
692693
: null,
693-
getSecret(character, "OBSIDIAN_API_TOKEN") ? obsidianPlugin : null,
694+
// getSecret(character, "OBSIDIAN_API_TOKEN") ? obsidianPlugin : null,
694695
getSecret(character, "ARTHERA_PRIVATE_KEY")?.startsWith("0x")
695696
? artheraPlugin
696697
: null,

0 commit comments

Comments
 (0)