Skip to content

Commit b2dfab1

Browse files
committed
secret creation for .env file
1 parent 9d0c836 commit b2dfab1

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/build_windows.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ jobs:
77
steps:
88
- name: Checkout code
99
uses: actions/checkout@v4
10+
11+
- name: Create .env file
12+
- run: |
13+
echo "SUPABASE_URL=${{ secrets.SUPABASE_URL }}" > .env
14+
echo "SUPABASE_KEY=${{ secrets.SUPABASE_KEY }}" >> .env
1015
1116
- name: Setup Flutter
1217
uses: subosito/flutter-action@v2

linux/packaging/appimage/make_config.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ startup_notify: true
3838
#
3939
# include:
4040
# - libcurl.so.4
41-
include: []
41+
include: [
42+
libglib2.0-0,
43+
libglib2.0-dev
44+
]
4245
# You can also specify [metainfo](https://www.freedesktop.org/software/appstream/metainfocreator/#/) file
4346
# which contains metadata of the app.
4447
# metainfo: linux/packaging/myappid.appdata.xml

linux/packaging/deb/make_config.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ co_authors:
99
priority: optional
1010
section: x11
1111
installed_size: 15700
12+
dependencies:
13+
- libglib2.0-0
14+
- libglib2.0-dev
1215
essential: false
1316
icon: assets/frame_271.png
1417

0 commit comments

Comments
 (0)