Skip to content

Commit 6effb55

Browse files
committed
Fix zsv path
1 parent f608221 commit 6effb55

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -745,15 +745,16 @@ jobs:
745745

746746
- name: List and set ZSV_ROOT env var
747747
env:
748-
ZSV_ROOT: ${{ steps.zsv.outputs.install-path }}
748+
ZSV_INSTALL_PATH: ${{ steps.zsv.outputs.install-path }}
749749
run: |
750-
ls -hl "$ZSV_ROOT"/{bin,include,lib}
751-
echo "ZSV_ROOT=$ZSV_ROOT" >>"$GITHUB_ENV"
750+
ls -hl "$ZSV_INSTALL_PATH"/{bin,include,lib}
751+
cp -r $"ZSV_INSTALL_PATH" .
752+
echo "ZSV_ROOT=$PWD/zsv" >>"$GITHUB_ENV"
752753
753754
- name: Codesign using thirdparty action
754755
uses: lando/code-sign-action@v2
755756
with:
756-
file: ${{ env.ZSV_ROOT }}/bin/zsv
757+
file: ./zsv/bin/zsv
757758
certificate-data: ${{ secrets.MACOS_CERT_P12 }}
758759
certificate-password: ${{ secrets.MACOS_CERT_PASSWORD }}
759760
apple-notary-user: matt@liquidaty.com

0 commit comments

Comments
 (0)