mirror of
https://github.com/usememos/memos.git
synced 2024-11-11 17:28:12 +08:00
31 lines
717 B
YAML
31 lines
717 B
YAML
name: build-and-push-docker-image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKER_NEOSMEMO_USERNAME }}
|
|
password: ${{ secrets.DOCKER_NEOSMEMO_TOKEN }}
|
|
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Build and Push
|
|
id: docker_build
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: ./
|
|
file: ./Dockerfile
|
|
push: true
|
|
tags: ${{ secrets.DOCKER_NEOSMEMO_USERNAME }}/memos:next
|