We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2dfab1 commit 7ed0d43Copy full SHA for 7ed0d43
1 file changed
.github/workflows/build_windows.yaml
@@ -1,4 +1,5 @@
1
name: Build Windows EXE
2
+
3
on: [push, workflow_dispatch]
4
5
jobs:
@@ -9,9 +10,10 @@ jobs:
9
10
uses: actions/checkout@v4
11
12
- name: Create .env file
- - run: |
13
+ run: |
14
echo "SUPABASE_URL=${{ secrets.SUPABASE_URL }}" > .env
15
echo "SUPABASE_KEY=${{ secrets.SUPABASE_KEY }}" >> .env
16
+ type .env # For debugging (optional)
17
18
- name: Setup Flutter
19
uses: subosito/flutter-action@v2
@@ -29,4 +31,5 @@ jobs:
29
31
uses: actions/upload-artifact@v4
30
32
with:
33
name: WindowsExecutable
- path: build/windows/runner/Release/
34
+ path: build/windows/runner/Release/
35
+ retention-days: 7 # Optional: Set artifact retention period
0 commit comments