diff options
author | morpheus65535 <[email protected]> | 2023-08-04 10:33:26 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2023-08-04 10:33:26 -0400 |
commit | c36745563f5826cf7397852f33801ac73e40d5b4 (patch) | |
tree | 276aaf4a596798dd6a4cb21b0c240889d3794daa /.github/workflows | |
parent | bc794914912e873d49805235ff4789c9da0a934f (diff) | |
download | bazarr-c36745563f5826cf7397852f33801ac73e40d5b4.tar.gz bazarr-c36745563f5826cf7397852f33801ac73e40d5b4.zip |
no log: fix CI
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b85c9403c..4b6408793 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: with: cond: ${{ github.event_name == 'pull_request' }} if_true: ${{ github.head_ref }} - if_false: ${{ github.ref }} + if_false: ${{ github.ref_name }} - name: Checkout repository uses: actions/checkout@v3 @@ -89,7 +89,7 @@ jobs: with: cond: ${{ github.event_name == 'pull_request' }} if_true: ${{ github.head_ref }} - if_false: ${{ github.ref }} + if_false: ${{ github.ref_name }} - name: Checkout repository uses: actions/checkout@v3 |