~repos /only-bible-app
git clone https://pyrossh.dev/repos/only-bible-app.git
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
404293eb
—
pyrossh 2 years ago
fix actions
- .github/workflows/build.yml +36 -6
- .github/workflows/setup.yaml +0 -11
.github/workflows/build.yml
CHANGED
|
@@ -7,7 +7,12 @@ jobs:
|
|
|
7
7
|
web:
|
|
8
8
|
runs-on: ubuntu-latest
|
|
9
9
|
steps:
|
|
10
|
+
- name: Make envfile
|
|
10
|
-
|
|
11
|
+
uses: SpicyPizza/create-envfile@v2.0
|
|
12
|
+
with:
|
|
13
|
+
file_name: .env
|
|
14
|
+
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
15
|
+
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
11
16
|
- uses: actions/checkout@v3
|
|
12
17
|
- uses: subosito/flutter-action@v2
|
|
13
18
|
with:
|
|
@@ -24,7 +29,12 @@ jobs:
|
|
|
24
29
|
android:
|
|
25
30
|
runs-on: ubuntu-latest
|
|
26
31
|
steps:
|
|
32
|
+
- name: Make envfile
|
|
27
|
-
|
|
33
|
+
uses: SpicyPizza/create-envfile@v2.0
|
|
34
|
+
with:
|
|
35
|
+
file_name: .env
|
|
36
|
+
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
37
|
+
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
28
38
|
- uses: actions/checkout@v3
|
|
29
39
|
- uses: actions/setup-java@v2
|
|
30
40
|
with:
|
|
@@ -39,7 +49,12 @@ jobs:
|
|
|
39
49
|
ios:
|
|
40
50
|
runs-on: macos-latest
|
|
41
51
|
steps:
|
|
52
|
+
- name: Make envfile
|
|
42
|
-
|
|
53
|
+
uses: SpicyPizza/create-envfile@v2.0
|
|
54
|
+
with:
|
|
55
|
+
file_name: .env
|
|
56
|
+
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
57
|
+
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
43
58
|
- uses: actions/checkout@v3
|
|
44
59
|
- uses: subosito/flutter-action@v2
|
|
45
60
|
with:
|
|
@@ -50,7 +65,12 @@ jobs:
|
|
|
50
65
|
macos:
|
|
51
66
|
runs-on: macos-latest
|
|
52
67
|
steps:
|
|
68
|
+
- name: Make envfile
|
|
53
|
-
|
|
69
|
+
uses: SpicyPizza/create-envfile@v2.0
|
|
70
|
+
with:
|
|
71
|
+
file_name: .env
|
|
72
|
+
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
73
|
+
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
54
74
|
- uses: actions/checkout@v3
|
|
55
75
|
- uses: subosito/flutter-action@v2
|
|
56
76
|
with:
|
|
@@ -63,7 +83,12 @@ jobs:
|
|
|
63
83
|
windows:
|
|
64
84
|
runs-on: windows-latest
|
|
65
85
|
steps:
|
|
86
|
+
- name: Make envfile
|
|
66
|
-
|
|
87
|
+
uses: SpicyPizza/create-envfile@v2.0
|
|
88
|
+
with:
|
|
89
|
+
file_name: .env
|
|
90
|
+
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
91
|
+
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
67
92
|
- uses: actions/checkout@v3
|
|
68
93
|
- uses: subosito/flutter-action@v2
|
|
69
94
|
with:
|
|
@@ -75,7 +100,12 @@ jobs:
|
|
|
75
100
|
linux:
|
|
76
101
|
runs-on: ubuntu-latest
|
|
77
102
|
steps:
|
|
103
|
+
- name: Make envfile
|
|
78
|
-
|
|
104
|
+
uses: SpicyPizza/create-envfile@v2.0
|
|
105
|
+
with:
|
|
106
|
+
file_name: .env
|
|
107
|
+
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
108
|
+
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
79
109
|
- uses: actions/checkout@v3
|
|
80
110
|
- uses: subosito/flutter-action@v2
|
|
81
111
|
with:
|
.github/workflows/setup.yaml
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
name: Setup env
|
|
2
|
-
description: Setup env
|
|
3
|
-
runs:
|
|
4
|
-
using: "composite"
|
|
5
|
-
steps:
|
|
6
|
-
- name: Make envfile
|
|
7
|
-
uses: SpicyPizza/create-envfile@v2.0
|
|
8
|
-
with:
|
|
9
|
-
file_name: .env
|
|
10
|
-
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
11
|
-
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|