mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
7c3c7374ce
Reviewed-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/25091)
26 lines
670 B
YAML
26 lines
670 B
YAML
name: "Build openssl interop container from master"
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '20 0 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update_quay_container:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: "log in to quay.io"
|
|
run: |
|
|
docker login -u openssl-ci+machine -p ${{ secrets.QUAY_IO_PASSWORD }} quay.io
|
|
- name: "Build container"
|
|
run: |
|
|
cd test/quic-openssl-docker/
|
|
docker build -t quay.io/openssl-ci/openssl-quic-interop:latest .
|
|
- name: "Push to quay"
|
|
run: |
|
|
docker push quay.io/openssl-ci/openssl-quic-interop:latest
|
|
|