Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
joifogaca authored Apr 8, 2024
1 parent 0a4e77b commit 0760a31
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/main.yml
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: marvel-angular
run: npm install && npm run build:prod

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

0 comments on commit 0760a31

Please sign in to comment.