Skip to content

cd dir

cd dir #4

Workflow file for this run

name: Docker CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: create apikey
env:
APIKEY: ${{secrets.APIKEY}}
run: |
cd nush-llm-chatbot/llamaindex
touch apikey
echo "$APIKEY" >> apikey
- uses: actions/checkout@v2
- name: Push image to AppVenture registry
uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: registry.nush.app
repository: nush-llm-chatbot
tags: latest