From a4a5438fcec707da7610f94f3a4f7a999d02f618 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 20 Jan 2021 20:47:43 -0800 Subject: [PATCH] Prod only as target --- .github/workflows/build.yml | 8 ++++---- .github/workflows/deploy.yml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0aa1ad5e..a8b3acad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,10 +1,10 @@ -name: Release Checks +name: Package Checks # Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch +# events but only for the prod branch on: pull_request: - branches: [ master ] + branches: [ prod ] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -42,4 +42,4 @@ jobs: - name: Building Restock package run: python build-deploy/src/package.py --f "Distribution/Restock/.mod_data.yml" - name: Building Restock+ package - run: python build-deploy/src/package.py --f "Distribution/Restock/.mod_data.yml" \ No newline at end of file + run: python build-deploy/src/package.py --f "Distribution/Restock/.mod_data.yml" \ No newline at end of file diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e860fa4e..97ad0359 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,10 +1,10 @@ -name: Build and Deploy +name: Package and Deploy # Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch +# events but only for the prod branch on: push: - branches: [ master ] + branches: [ prod ] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: