We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccff789 commit 3c61d58Copy full SHA for 3c61d58
.github/workflows/deploy.yml
@@ -21,12 +21,10 @@ jobs:
21
- name: Install Dependencies
22
run: npm install
23
24
- - name: Build
25
- run: npm run build --configuration production --base-href /Collaborative-Editor-UI/
+ - name: Install angular-cli-ghpages
+ run: npx ng add angular-cli-ghpages --skip-confirmation
26
27
- - name: Deploy
28
- uses: peaceiris/actions-gh-pages@v3
29
- with:
30
- github_token: ${{ secrets.GITHUB_TOKEN }}
31
- publish_dir: ./dist/collaborative-editor/browser
32
- enable_jekyll: false
+ - name: Deploy to GitHub Pages
+ run: npx ng deploy --base-href=/Collaborative-Editor-UI/ --no-silent --c=production --skip-build=false
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments