We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cc1344 commit 59149baCopy full SHA for 59149ba
.github/workflows/deploy-production.yml
@@ -24,12 +24,16 @@ jobs:
24
run: |
25
npm install
26
npm run release:prod
27
+ npm run test
28
+ cp -r dist distToDeploy/
29
+ cp -r dist distToDeploy/src/
30
+ cp -r test distToDeploy/test/
31
shell: bash
32
33
- name: Copying release artifacts to public folder
34
35
mkdir -p ./public
- cp -r ./phoenix/dist/. ./public
36
+ cp -r ./phoenix/distToDeploy/. ./public
37
38
- name: Deploy Github Pages
39
uses: peaceiris/actions-gh-pages@v3
0 commit comments