Skip to content

change status to marks #9

change status to marks

change status to marks #9

Workflow file for this run

name: Docker image push
on:
push:
branches:
- 'master'
jobs:
build-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to image repository
uses: docker/login-action@v2
with:
username: ${{ secrets.USER }}
password: ${{ secrets.PASS }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: Dockerfile
push: true
tags: "narbehaj/ssl-checker:latest"