summaryrefslogtreecommitdiffstats
path: root/.github/workflows/build_quic_interop_container.yml
blob: 28dc52743b839f5d1f83580a60ecb43ff63ac2b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: "Build openssl interop container from master"

on:
  schedule:
    - cron:  '40 02 * * *'
  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