We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b95eb10 commit bee7559Copy full SHA for bee7559
.github/workflows/build-and-deploy.yml
@@ -16,6 +16,19 @@ jobs:
16
repository: jeroenvdmeer/feyod
17
path: ./feyod
18
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v5
21
+ with:
22
+ python-version: '3.x'
23
+
24
+ - name: Build SQLite Database
25
+ run: |
26
+ echo "Building feyod.db..."
27
+ cd ./feyod
28
+ rm -f feyod.db # Ensure clean start
29
+ sqlite3 feyod.db < feyod.sql
30
+ echo "Database successfully built."
31
32
- name: Log in to Azure
33
uses: azure/login@v2
34
with:
0 commit comments