Skip to content

Create prod.yaml

Create prod.yaml #3

Workflow file for this run

name: docker image
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Get current date
id: date
run: echo "::set-output name=today::$(date +'%Y-%m-%d')"
-
name: Build and push
uses: docker/build-push-action@v3
with:
file: ./Dockerfile
platforms: linux/amd64
push: true
tags: |
dongjiang1989/think:${{ steps.date.outputs.today }}
cache-from: type=gha
cache-to: type=gha,mode=max