File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
test :
11
- runs-on : macos-15
11
+ runs-on : ubuntu-latest
12
12
steps :
13
13
- uses : actions/checkout@v2
14
14
- name : Set up Python
33
33
34
34
build :
35
35
needs : test
36
- runs-on : macos-15
36
+ runs-on : macos-latest
37
37
steps :
38
38
- uses : actions/checkout@v2
39
+ - name : Create .env file
40
+ run : |
41
+ echo "DATABASE_URL=${{ secrets.DATABASE_URL }}" >> .env
42
+ echo "LLM_API_KEY=${{ secrets.LLM_API_KEY }}" >> .env
43
+ echo "MODEL=${{ secrets.MODEL }}" >> .env
44
+ echo "API_V1_STR=${{ secrets.API_V1_STR }}" >> .env
45
+ echo "PROJECT_NAME=${{ secrets.PROJECT_NAME }}" >> .env
46
+ echo "DESCRIPTION=${{ secrets.DESCRIPTION }}" >> .env
47
+ echo "VERSION=${{ secrets.VERSION }}" >> .env
39
48
- name : Build Docker image
40
49
run : docker build -t cinex10/codinsight:latest .
41
50
- name : Log in to Docker Hub
You can’t perform that action at this time.
0 commit comments