diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3276066..30ce680 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,7 @@ name: Build and Deploy on: push: branches: - - master + - main jobs: build-and-deploy: runs-on: ubuntu-latest @@ -12,8 +12,8 @@ jobs: - 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. run: | - npm install - npm run build + yarn install + yarn run build - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@4.1.4