mirror of
https://git.private.coffee/PrivateCoffee/wikimore.git
synced 2025-04-03 21:17:35 +03:00
33 lines
858 B
YAML
33 lines
858 B
YAML
name: Docker CI/CD
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
jobs:
|
|
docker:
|
|
name: Docker Build and Push to Docker Hub
|
|
container:
|
|
image: node:20-bookworm
|
|
steps:
|
|
- name: Install dependencies
|
|
run: |
|
|
apt update
|
|
apt install -y docker.io
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Build and push to Docker Hub
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
push: true
|
|
tags: |
|
|
privatecoffee/wikimore:latest
|
|
privatecoffee/wikimore:${{ env.GITHUB_REF_NAME }}
|