Skip to content

v2.0.3 (wrong deployment) #108

v2.0.3 (wrong deployment)

v2.0.3 (wrong deployment) #108

Workflow file for this run

name: Build and test
on:
push:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Prepare
run: |
cd src
npm install
npm run build
npm run test
cd dist
npm link
cd ..
cd ..
npm install -g @angular/cli
ng new your-angular-project --defaults
cd your-angular-project
npm link angular-cli-ghpages
ng add angular-cli-ghpages
- name: Deploy
if: github.ref == 'refs/heads/main'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cd your-angular-project
ng deploy --name="The Buildbot" --email="[email protected]" --cname=angular-cli-ghpages.angular.schule