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: