Skip to content

Commit

Permalink
Update CI/CD.
Browse files Browse the repository at this point in the history
  • Loading branch information
guillevalin committed Jan 30, 2025
1 parent e01c208 commit 6f59460
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build_tools.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ on:
required: true
type: boolean
default: true
have_run_tests:
description: 'Have you run tests successfully?'
required: true
type: boolean
environment:
type: environment
default: "development"

jobs:
build_tools:
Expand Down Expand Up @@ -45,6 +44,9 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y curl jq zip unzip coreutils
echo "environment: ${{ inputs.environment }}"
echo ${{ vars }}
echo ${{ secrets }}
- name: Run node in background
id: run_node
Expand All @@ -60,7 +62,7 @@ jobs:
INITIALIZATION_DATA: ${{ secrets.INITIALIZATION_DATA }}
DOWNLOAD_PREFIX: ${{ inputs.use_dev_prefix && 'https://download.shinkai.com/dev-tools-' || 'https://download.shinkai.com/tools-' }}${{ inputs.node_version }}
SKIP_IMPORT_FROM_DIRECTORY: true
SHINKAI_STORE_ADDR: "https://shinkai-store-302883622007.us-central1.run.app"
SHINKAI_STORE_ADDR: ${{ inputs.use_dev_prefix && 'https://shinkai-store-dev-302883622007.us-central1.run.app' || 'https://shinkai-store-302883622007.us-central1.run.app' }}
SHINKAI_STORE_TOKEN: ${{ secrets.SHINKAI_STORE_TOKEN }}
USE_DOCKER: true
SHINKAI_NODE_IMAGE: "dcsparkdevops/shinkai-node:${{ inputs.node_version }}"
Expand Down

0 comments on commit 6f59460

Please sign in to comment.