Skip to content

build chrome webdriver #52

build chrome webdriver

build chrome webdriver #52

Workflow file for this run

name: build
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/setup-buildx-action@master
- name: quay.io login
uses: docker/login-action@v1
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
- uses: docker/metadata-action@v4
id: metadata
with:
images: |
quay.io/rh_integration/selenium-standalone-chrome
flavor: |
latest=true
tags: |
type=sha
- uses: docker/build-push-action@v2
with:
build-args: customca=${{ secrets.CUSTOMCA }}
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
push: true