Skip to content

Commit

Permalink
add yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim Kantsura committed Mar 21, 2024
1 parent f382919 commit f0c45ae
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Angular Build and Deploy

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20

- name: Build Angular app to prod
working-directory: ionic_angular_gallery
run: npm install && npm run build:prod

- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist/browser
branch: prod
token: ${{ secrets.GH_TOKEN }}

0 comments on commit f0c45ae

Please sign in to comment.