Skip to content

--no-silent

--no-silent #3

Workflow file for this run

name: Build and Deploy Script
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Adding Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install Dependencies
run: npm install
- name: Build Angular App
run: npm run build
- name: Deploy to gh pages
run: |
npx angular-cli-ghpages --dir=dist/sukoa/browser --no-silent
env:
CI: true
GH_TOKEN: ${{ secrets.GH_TOKEN }}