Skip to content

Create and publish a Docker image #295

Create and publish a Docker image

Create and publish a Docker image #295

name: Create and publish a Docker image
on:
push:
branches: ['master','8.2','8.1','8.0','7.4','7.3','7.2','develop']
workflow_dispatch:
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to NETivism Registry
uses: docker/login-action@v2
with:
registry: rg.netivism.com.tw
username: ${{ secrets.NETIVISM_REGISTRY_USER }}
password: ${{ secrets.NETIVISM_REGISTRY_PASS }}
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: |
${{ github.repository }}
ghcr.io/${{ github.repository }}
rg.netivism.com.tw/${{ github.repository }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}