Skip to content

Formalize response struct. #8

Formalize response struct.

Formalize response struct. #8

name: Create and publish a Docker image
on:
push:
workflow_dispatch:
jobs:
build-and-push-image:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '#skip-build') }}
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
registry: docker.io
username: ${{ secrets.DOCKER_REGISTRY_USER }}
password: ${{ secrets.DOCKER_REGISTRY_PASS }}
- 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 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 }}
tags: |
type=schedule
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: docker
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}