Skip to content

Commit 51fb35d

Browse files
debug: change cd
1 parent 620e97d commit 51fb35d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Diff for: .github/workflows/deploy.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Deploy Frontend to S3
2-
#probando con yarn
2+
33
on:
44
push:
55
branches:
@@ -16,7 +16,10 @@ jobs:
1616
- name: Set up Node.js
1717
uses: actions/setup-node@v3
1818
with:
19-
node-version: '16'
19+
node-version: '18'
20+
21+
- name: Remove package-lock.json
22+
run: rm -f package-lock.json
2023

2124
- name: Install dependencies
2225
run: yarn install
@@ -26,7 +29,7 @@ jobs:
2629
VITE_AUTH0_DOMAIN: ${{ secrets.VITE_AUTH0_DOMAIN }}
2730
VITE_AUTH0_CLIENT_ID: ${{ secrets.VITE_AUTH0_CLIENT_ID }}
2831
VITE_BACKEND_URL: ${{ secrets.VITE_BACKEND_URL }}
29-
run: yarn dev
32+
run: yarn build
3033

3134
- name: Deploy to S3
3235
env:

0 commit comments

Comments
 (0)