From 9607a477f55ecbf0aa25197c08d2b2bea39dad74 Mon Sep 17 00:00:00 2001 From: Lovepreet Singh Jassal <17259255+lovepreetjassal@users.noreply.github.com> Date: Sat, 20 Apr 2024 20:43:47 -0400 Subject: [PATCH] Create ghpagesdeploy.yml --- .github/workflows/ghpagesdeploy.yml | 36 +++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/ghpagesdeploy.yml diff --git a/.github/workflows/ghpagesdeploy.yml b/.github/workflows/ghpagesdeploy.yml new file mode 100644 index 0000000..1979bd6 --- /dev/null +++ b/.github/workflows/ghpagesdeploy.yml @@ -0,0 +1,36 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: Build and Deploy Script + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [14.x, 16.x, 18.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + #- run: npm ci + - run: npm run build --if-present + - name: Deploy to gh pages + run: | + npx angular-cli-ghpages --dir=dist/bockpit + env: + CI: true + GH_TOKEN: ${{ secrets.GH_TOKEN }}