diff --git a/.github/workflows/openssl3.yml b/.github/workflows/openssl3.yml index 6155992..0c083a5 100644 --- a/.github/workflows/openssl3.yml +++ b/.github/workflows/openssl3.yml @@ -63,7 +63,7 @@ jobs: platforms: ${{ matrix.platform }} build-args: | MAKE_DEFINES=-j4 - ${{ (github.event.inputs.build_main == 'true') && env.build-args || null }} + ${{ (inputs.build_main == 'true') && env.build-args || null }} tags: oqs-ossl3 - name: Test openssl3 with provider - one baseline and one hybrid QSC algorithm @@ -72,7 +72,7 @@ jobs: docker run --rm --name oqs-ossl3 oqs-ossl3 sh -c "KEM_ALG=p521_frodo1344aes /opt/openssl32/bin/serverstart.sh; sleep 2; echo 'GET /' | openssl s_client -connect localhost --groups p521_frodo1344aes --CAfile /opt/openssl32/bin/CA.crt" - name: Push Docker image to registries - if: ${{ env.push == true }} + if: env.push uses: docker/build-push-action@v6 with: push: true @@ -80,6 +80,6 @@ jobs: platforms: ${{ matrix.platform }} build-args: | MAKE_DEFINES=-j4 - ${{ (github.event.inputs.build_main == 'true') && env.build-args || null }} + ${{ (inputs.build_main == 'true') && env.build-args || null }} tags: | ghcr.io/ajbozarth/openssl3:${{ inputs.release_tag || 'latest' }}