updated branch info

This commit is contained in:
smilerz
2023-12-28 18:02:48 -06:00
parent 7e6f3ad92b
commit c597aed956
2 changed files with 76 additions and 76 deletions

View File

@@ -4,13 +4,13 @@ on: [push, pull_request]
jobs:
build:
if: github.repository_owner == 'smilerz'
if: github.repository_owner == 'TandoorRecipes'
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ['3.10']
node-version: ['18']
python-version: ["3.10"]
node-version: ["18"]
steps:
- uses: actions/checkout@v4
@@ -24,7 +24,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache: "pip"
- name: Install Python Dependencies
run: |
@@ -48,7 +48,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
cache: "yarn"
cache-dependency-path: ./vue/yarn.lock
- name: Install Vue dependencies

View File

@@ -3,13 +3,13 @@ on:
# the 1st condition
workflow_run:
workflows: ["Continuous Integration"]
branches: [working]
branches: [master]
types:
- completed
jobs:
deploy:
if: github.repository_owner == 'smilerz' && ${{ github.event.workflow_run.conclusion == 'success' }}
if: github.repository_owner == 'TandoorRecipes' && ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4