~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.
e98e60e4
—
pyrossh 1 year ago
fix cache
.github/workflows/build.yml
CHANGED
|
@@ -27,6 +27,9 @@ jobs:
|
|
|
27
27
|
|
|
28
28
|
website-build:
|
|
29
29
|
runs-on: ubuntu-latest
|
|
30
|
+
defaults:
|
|
31
|
+
run:
|
|
32
|
+
working-directory: 'website'
|
|
30
33
|
steps:
|
|
31
34
|
- uses: actions/checkout@v4
|
|
32
35
|
- uses: actions/configure-pages@v4
|
|
@@ -34,14 +37,12 @@ jobs:
|
|
|
34
37
|
with:
|
|
35
38
|
node-version: 20
|
|
36
39
|
cache: npm
|
|
37
|
-
ache-dependency-path:
|
|
40
|
+
ache-dependency-path: '**/package-lock.json'
|
|
38
41
|
- run: npm ci
|
|
39
|
-
working-directory: ./website
|
|
40
42
|
- run: npm run build
|
|
41
|
-
working-directory: ./website
|
|
42
43
|
- uses: actions/upload-pages-artifact@v3
|
|
43
44
|
with:
|
|
44
|
-
path: '
|
|
45
|
+
path: 'build/'
|
|
45
46
|
|
|
46
47
|
website-deploy:
|
|
47
48
|
needs: website-build
|