Skip to content

fix syntax in entry.sh #9

fix syntax in entry.sh

fix syntax in entry.sh #9

Workflow file for this run

name: Docker Image CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag topheee/postfix-courier-mail:beta
- name: Login to Docker Hub
run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u "${{ secrets.DOCKER_HUB_USER }}" --password-stdin
- name: Push the Docker image
run: docker push topheee/postfix-courier-mail:beta
- name: Logout of Docker Hub
run: docker logout