Skip to content
This repository was archived by the owner on May 19, 2025. It is now read-only.

Commit 1cbf520

Browse files
committed
fix small mismatch
1 parent 70245c4 commit 1cbf520

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/demo.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
name: Build and Deploy
1+
name: Demo - Build and Deploy
22
on: [push]
33
# on:
44
# push:
55
# tags:
66
# - release/*
77
jobs:
8-
build-and-deploy:
8+
demo-deploy:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout 🛎️
1212
uses: actions/[email protected]
1313

14-
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
14+
- name: Install and Build
1515
run: |
16-
npm install
17-
npm run build
16+
yarn install
17+
yarn start
1818
1919
- name: Deploy 🚀
2020
uses: JamesIves/[email protected]
2121
with:
22-
branch: gh-pages # The branch the action should deploy to.
23-
folder: build # The folder the action should deploy.
22+
branch: gh-pages
23+
folder: dist

0 commit comments

Comments
 (0)