mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-24 06:37:16 -04:00
no log: fix CI
This commit is contained in:
parent
6000a8889d
commit
bc79491491
1 changed files with 19 additions and 2 deletions
21
.github/workflows/ci.yml
vendored
21
.github/workflows/ci.yml
vendored
|
@ -7,6 +7,7 @@ on:
|
|||
- frontend/**
|
||||
- bazarr/**
|
||||
- libs/**
|
||||
- migrations/**
|
||||
- bazarr.py
|
||||
- requirements.txt
|
||||
- dev-requirements.txt
|
||||
|
@ -22,10 +23,18 @@ jobs:
|
|||
Frontend:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Get source branch name
|
||||
uses: haya14busa/action-cond@v1
|
||||
id: branch_ref
|
||||
with:
|
||||
cond: ${{ github.event_name == 'pull_request' }}
|
||||
if_true: ${{ github.head_ref }}
|
||||
if_false: ${{ github.ref }}
|
||||
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
ref: ${{ github.ref }}
|
||||
ref: ${{ steps.branch_ref.outputs.value }}
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Cache node_modules
|
||||
|
@ -74,10 +83,18 @@ jobs:
|
|||
needs: Frontend
|
||||
|
||||
steps:
|
||||
- name: Get source branch name
|
||||
uses: haya14busa/action-cond@v1
|
||||
id: branch_ref
|
||||
with:
|
||||
cond: ${{ github.event_name == 'pull_request' }}
|
||||
if_true: ${{ github.head_ref }}
|
||||
if_false: ${{ github.ref }}
|
||||
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
ref: ${{ github.ref }}
|
||||
ref: ${{ steps.branch_ref.outputs.value }}
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Set up Python 3.8
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue