Skip to content

updated mysql repository url #6

updated mysql repository url

updated mysql repository url #6

name: indimail-mta:oracle9 container image
on:
push:
paths:
- '**/indimail-mta/oracle9/**'
- .github/workflows/indimail-mta-oracle9.yml
- '!**.md'
workflow_dispatch:
jobs:
build_and_push:
name: build and push container image
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v2
- name: login
run: |
echo "${{ secrets.GHCR_TOKEN }}" | docker login ghcr.io --username "${{ github.repository_owner }}" --password-stdin
echo "${{ secrets.DOCKER_PAT }}" | docker login docker.io --username cprogrammer --password-stdin
- name: build
run: |
cp indimail-mta/oracle9/Dockerfile .
docker build --tag "ghcr.io/${{ github.repository_owner }}/indimail-mta:oracle9" .
- name: push
run: |
docker push "ghcr.io/${{ github.repository_owner }}/indimail-mta:oracle9"
docker image tag "ghcr.io/${{ github.repository_owner }}/indimail-mta:oracle9" docker.io/cprogrammer/indimail-mta:oracle9
docker push docker.io/cprogrammer/indimail-mta:oracle9