mirror of
https://github.com/harry0703/MoneyPrinterTurbo.git
synced 2026-03-02 04:47:22 +08:00
59 lines
1.6 KiB
YAML
59 lines
1.6 KiB
YAML
name: Build docker images
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- '**'
|
|
branches:
|
|
- 'main'
|
|
|
|
jobs:
|
|
build-docs-images:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Get current date and time
|
|
id: datetime
|
|
run: echo "datetime=$(date +'%Y%m%d%H%M%S')" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
# list of Docker images to use as base name for tags
|
|
images: |
|
|
${{ secrets.DOCKER_USERNAME }}/moneyprinterturbo
|
|
ghcr.io/${{ github.repository_owner }}/moneyprinterturbo
|
|
tags: |
|
|
${{ steps.datetime.outputs.datetime }}
|
|
flavor: latest=false
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Login to ghcr.io
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GH_PAT }}
|
|
|
|
- name: Build and push Docker images to ghcr.io and DockerHub
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }} |