Fix potential memory leak in OSSL_HPKE_CTX_new() #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Trigger docs.openssl.org deployment" | |
on: | |
push: | |
branches: | |
- "openssl-3.[0-9]+" | |
- "master" | |
paths: | |
- "doc/man*/**" | |
jobs: | |
trigger: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Trigger deployment workflow" | |
run: | | |
gh workflow run -f branch=${{ github.ref_name }} deploy-site.yaml | |
sleep 3 | |
RUN_ID=$(gh run list -w deploy-site.yaml -L 1 --json databaseId -q ".[0].databaseId") | |
gh run watch ${RUN_ID} --exit-status | |
env: | |
GH_REPO: "openssl/openssl-docs" | |
GH_TOKEN: ${{ secrets.OPENSSL_MACHINE_TOKEN }} |