fixed minor issues #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Angular App #pipeline | |
on: | |
push: | |
branches: | |
- master # Adjust this branch name to your main branch | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20 # Adjust this to your Node.js version | |
- name: Install Dependencies | |
run: npm install | |
- name: Build Angular App | |
run: npm run build --prod | |
- name: Deploy to GitHub Pages | |
run: | | |
npx ngh --dir=dist/pdf-removal |