-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
57 additions
and
26 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,80 @@ | ||
name: Build and Deploy Pages | ||
# name: Build and Deploy Pages | ||
|
||
# on: | ||
# push: | ||
# branches: | ||
# - main | ||
# pull_request: | ||
# branches: | ||
# - main | ||
# types: [opened, synchronize, reopened] | ||
|
||
# jobs: | ||
# build-and-deploy: | ||
# runs-on: ubuntu-latest | ||
|
||
# strategy: | ||
# matrix: | ||
# node-version: [20] | ||
|
||
# steps: | ||
# - name: Checkout code | ||
# uses: actions/checkout@v4 | ||
|
||
# - name: Set up Node.js ${{ matrix.node-version }} | ||
# uses: actions/setup-node@v4 | ||
# with: | ||
# node-version: ${{ matrix.node-version }} | ||
|
||
# - name: Cache dependencies | ||
# uses: actions/cache@v4 | ||
# with: | ||
# path: ~/.npm | ||
# key: ${{ runner.os }}-node-${{ matrix.node-version }}-npm-${{ hashFiles('**/package-lock.json') }} | ||
# restore-keys: | | ||
# ${{ runner.os }}-node-${{ matrix.node-version }}-npm- | ||
|
||
# - name: Install dependencies | ||
# run: npm ci | ||
|
||
# - name: Build Angular app to prod | ||
# run: npm run build:prod | ||
|
||
# - name: Deploy to GitHub Pages | ||
# uses: JamesIves/github-pages-deploy-action@v4 | ||
# with: | ||
# branch: gh-pages | ||
# folder: dist/browser | ||
# target-folder: . | ||
# token: ${{ secrets.GH_TOKEN }} | ||
name: Build and Deploy Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
branches: | ||
- main | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
build-and-deploy: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [20] | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js ${{ matrix.node-version }} | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.os }}-node-${{ matrix.node-version }}-npm-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node-${{ matrix.node-version }}-npm- | ||
- name: Install dependencies | ||
run: npm ci | ||
node-version: 20 | ||
|
||
- name: Build Angular app to prod | ||
run: npm run build:prod | ||
run: npm ci && npm run build:prod | ||
|
||
- name: Deploy to GitHub Pages | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
branch: gh-pages | ||
folder: dist/browser | ||
target-folder: . | ||
token: ${{ secrets.GH_TOKEN }} | ||
branch: prod | ||
token: ${{ secrets.GH_TOKEN }} |