From 27df182e9492e503a85256aab4de3a8aa2bd7c14 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Mon, 3 Oct 2022 23:06:16 -0500 Subject: [PATCH] Fix deploy.yml --- .github/workflows/deploy.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b299e28..93367b9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,10 +2,10 @@ name: Build and Deploy on: push: branches: - - 'main' + - 'master' jobs: build-and-deploy: - if: github.repository == 'thepaperpilot/guide-to-incremental' + if: github.repository == 'thepaperpilot/Guide-to-Incrementals' runs-on: ubuntu-latest steps: - name: Checkout 🛎️ @@ -16,7 +16,6 @@ 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: | yarn install --frozen-lockfile - yarn run generate yarn run build - name: Deploy 🚀