From 13420e0753c7edc586dbd04038d29a3dce3016f3 Mon Sep 17 00:00:00 2001 From: Joshua Date: Wed, 20 Dec 2023 14:47:38 -0600 Subject: [PATCH] update branch names --- .github/workflows/ci.yml | 2 +- .github/workflows/deploy.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f7a88f64..c44ed4d45 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: PR CI on: pull_request: - branches: [main] + branches: [prerelease] jobs: CI: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 20e646702..867e340e1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,10 +4,10 @@ on: workflow_dispatch: push: branches: - - main + - prerelease paths: - - '.github/workflows/deploy.yml' - - 'website/**' + - ".github/workflows/deploy.yml" + - "website/**" permissions: contents: read @@ -33,7 +33,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: '18' + node-version: "18" - name: Get yarn cache id: yarn-cache @@ -57,7 +57,7 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v2 with: - path: './website/build' + path: "./website/build" - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v2