chore: add test github action (#102)

chore: test
This commit is contained in:
boojack 2022-07-03 21:37:06 +08:00 committed by GitHub
parent 3a837203a5
commit 58f62f88a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 1 deletions

View File

@ -0,0 +1,37 @@
name: build-and-push-dev-image
on:
push:
branches:
- "*"
jobs:
build-and-push-dev-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: neosmemo
password: ${{ secrets.DOCKER_NEOSMEMO_TOKEN }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
with:
install: true
- name: Build and Push
id: docker_build
uses: docker/build-push-action@v3
with:
context: ./
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: neosmemo/memos:dev

View File

@ -1,5 +1,5 @@
# Build frontend dist. # Build frontend dist.
FROM node:16.15.1-bullseye AS frontend FROM node:16.15.0-alpine AS frontend
WORKDIR /frontend-build WORKDIR /frontend-build
COPY ./web/ . COPY ./web/ .