diff options
author | morpheus65535 <[email protected]> | 2023-07-27 18:06:55 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2023-07-27 18:06:55 -0400 |
commit | 98a0b65d97526259b3a3c901ca8a3baaa8959ad6 (patch) | |
tree | 514aeeda0321d98d4c4c6c599462093b19d8658e /.github/workflows/ci.yml | |
parent | 6bc46fe4e97a3127b3baab1373bb2111b57f7ec4 (diff) | |
download | bazarr-98a0b65d97526259b3a3c901ca8a3baaa8959ad6.tar.gz bazarr-98a0b65d97526259b3a3c901ca8a3baaa8959ad6.zip |
no log: fixed ci workflow to use the branch name that triggered the workflow run.v1.2.5-beta.5
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51db01ef3..71e5b2d83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 with: + ref: ${{ github.ref }} fetch-depth: 1 - name: Cache node_modules @@ -76,6 +77,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 with: + ref: ${{ github.ref }} fetch-depth: 1 - name: Set up Python 3.8 |