Skip to content

build storm testsuite image #4

build storm testsuite image

build storm testsuite image #4

# This is a basic workflow to help you get started with Actions
name: build storm testsuite image
on:
push:
branches:
- el9
schedule:
- cron: '30 1 * * *'
jobs:
build-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build Docker image
uses: docker/build-push-action@v2
with:
tags: cnafsd/storm-testsuite:el9
context: ./docker/testsuite
file: ./docker/testsuite/Dockerfile
push: false
- name: Push docker image
run: docker push cnafsd/storm-testsuite:el9