We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a852b6f + a36b912 commit d282312Copy full SHA for d282312
.github/workflows/cicd.yml
@@ -9,10 +9,6 @@ on:
9
- cron: "15 5 * * 0"
10
workflow_dispatch:
11
12
-defaults:
13
- run:
14
- working-directory: ./app
15
-
16
permissions:
17
contents: read
18
pages: write
@@ -23,10 +19,12 @@ concurrency:
23
19
cancel-in-progress: false
24
20
25
21
jobs:
26
27
22
deploy:
28
runs-on: ubuntu-latest
29
if: github.ref == 'refs/heads/main'
+ defaults:
+ run:
+ working-directory: ./app
30
steps:
31
- uses: actions/checkout@v3
32
@@ -54,7 +52,7 @@ jobs:
54
52
- name: Upload artifact
55
53
uses: actions/upload-pages-artifact@v1
56
with:
57
- path: ./dist
+ path: app/dist
58
59
- name: Deploy to GitHub pages
60
uses: actions/deploy-pages@v2
0 commit comments