Skip to content

Commit

Permalink
Prueba identando
Browse files Browse the repository at this point in the history
  • Loading branch information
uo277878 committed Nov 7, 2024
1 parent b332240 commit 95c3c49
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,31 @@ name: Build and Deploy
on:
push:
branches:
-main
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v3

- name: Install frontend packages
working-directory: ./frontend
run: npm ci
working-directory: ./frontend
run: npm ci

- name: Build frontend
working-directory: ./frontend
run: npm run build
working-directory: ./frontend
run: npm run build

- name: Disable Jekyll
run: echo "" > ./frontend/dist/.nojekyll

- name: Deploy frontend
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: main
folder: frontend/dist
clean: true
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: main
folder: frontend/dist
clean: true

- name: Install backend packages
working-directory: ./backend
Expand Down

0 comments on commit 95c3c49

Please sign in to comment.