mirror of
https://github.com/Anduin2017/HowToCook.git
synced 2026-01-11 01:37:21 +08:00
Compare commits
3 Commits
b55e1fd7a4
...
8f63916155
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8f63916155 | ||
|
|
cde5ff7851 | ||
|
|
78c7f255ec |
22
.github/workflows/build.yml
vendored
22
.github/workflows/build.yml
vendored
@@ -3,6 +3,8 @@ name: Continuous Deployment
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
jobs:
|
||||
build-readme-file:
|
||||
@@ -35,7 +37,12 @@ jobs:
|
||||
steps:
|
||||
# Checkout, install tools..
|
||||
- uses: actions/checkout@v2
|
||||
# Use docker to build current directory ./Dockfile
|
||||
|
||||
# 设置Docker BuildX
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
# Login to GitHub Container Registry
|
||||
- name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
@@ -43,7 +50,12 @@ jobs:
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Build and push the Docker image
|
||||
run: |
|
||||
docker build . --tag ghcr.io/anduin2017/how-to-cook:latest
|
||||
docker push ghcr.io/anduin2017/how-to-cook:latest
|
||||
# 构建并推送多架构Docker镜像
|
||||
- name: Build and push multi-arch Docker image
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
tags: |
|
||||
ghcr.io/${{ github.repository }}:latest
|
||||
@@ -7,7 +7,6 @@
|
||||
- 黄瓜
|
||||
- 鸡蛋
|
||||
- 火腿肠
|
||||
- 食用油
|
||||
- 盐
|
||||
- 生抽
|
||||
- 红尖椒(可选)
|
||||
@@ -18,18 +17,18 @@
|
||||
|
||||
每份:
|
||||
|
||||
- 黄瓜 = 1 根(约 200g)
|
||||
- 鸡蛋 = 2 个
|
||||
- 火腿肠 = 1 根(约 40g)
|
||||
- 红尖椒 = 1 个
|
||||
- 食用油 = 10ml
|
||||
- 黄瓜 1 根(约 200g)
|
||||
- 鸡蛋 2 个
|
||||
- 火腿肠 1 根(约 40g)
|
||||
- 红尖椒 1 个(可选)
|
||||
- 食用油 10ml
|
||||
- 生抽 3ml
|
||||
- 盐 2g
|
||||
|
||||
## 操作
|
||||
|
||||
- 黄瓜洗净,切半圆形,备用
|
||||
- 火腿切半圆形,备用
|
||||
- 黄瓜洗净,切半圆形片,备用
|
||||
- 火腿切半圆形片,备用
|
||||
- 红尖椒(可选)切碎,备用
|
||||
- 将鸡蛋打入碗中,搅匀,即为 `鸡蛋液`
|
||||
- 热锅里倒 5ml 食用油
|
||||
|
||||
Reference in New Issue
Block a user