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

View File

@@ -3,13 +3,13 @@ on:
# the 1st condition # the 1st condition
workflow_run: workflow_run:
workflows: ["Continuous Integration"] workflows: ["Continuous Integration"]
branches: [working] branches: [master]
types: types:
- completed - completed
jobs: jobs:
deploy: 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 runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4