diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cfd062c..426e3de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,8 +84,10 @@ jobs: path: ./build/source key: wvp-model-tiny enableCrossOsArchive: true + - name: Prepare + run: powershell -Command "& {[System.IO.File]::WriteAllBytes('${{ github.workspace }}\cert.p12', [System.Convert]::FromBase64String('${{ secrets.SECTIGO_CERT_P12}}'))}" - name: Configure - run: cmake -B ${{ github.workspace }}/build -G "Visual Studio 17 2022" -A x64 + run: cmake -B ${{ github.workspace }}/build -G "Visual Studio 17 2022" -A x64 -DVPP_NOTARIZE=ON -DVPP_CODESIGN_WINDOWS_KEYFILE=${{ github.workspace }}\cert.p12 -DVPP_CODESIGN_WINDOWS_KEYPASSWORD=${{ secrets.DEV_ID_PASSWORD }} - name: Build run: cmake --build ${{ github.workspace }}/build --config ${{ env.build_type }} - name: Test