From e72cff32fa890b00c8edca51a8e6b0f98e2ed731 Mon Sep 17 00:00:00 2001 From: Lucas Saavedra Vaz <32426024+lucasssvaz@users.noreply.github.com> Date: Fri, 7 Jun 2024 02:03:07 -0300 Subject: [PATCH] ci(tools): Fix python tools build --- .github/workflows/build_py_tools.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build_py_tools.yml b/.github/workflows/build_py_tools.yml index d08f1781311..37bb5c4e355 100644 --- a/.github/workflows/build_py_tools.yml +++ b/.github/workflows/build_py_tools.yml @@ -88,9 +88,6 @@ jobs: done - name: Checkout repository uses: actions/checkout@v4 - with: - token: ${{ secrets.TOOLS_UPLOAD_PAT }} - ref: ${{ github.event.pull_request.head.ref }} - name: Set up Python 3.8 # Skip setting python on ARM because of missing compatibility: https://github.com/actions/setup-python/issues/108 if: matrix.os != 'ARM' && matrix.os != 'ARM64' @@ -108,7 +105,7 @@ jobs: pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=.github/pytools/espressif.ico tools/$tool.py done - name: Sign binaries - if: matrix.os == 'windows-latest' && env.CERTIFICATE != '' && env.CERTIFICATE_PASSWORD != '' + if: matrix.os == 'windows-latest' && env.CERTIFICATE != '' env: CERTIFICATE: ${{ secrets.CERTIFICATE }} CERTIFICATE_PASSWORD: ${{ secrets.CERTIFICATE_PASSWORD }}