Compare commits

..

3 Commits

Author SHA1 Message Date
henry.chen
7f26503247 chore(release): 2.2.3 2023-05-25 16:16:32 +08:00
henry.chen
235145ed46 chore(ci): print log 2023-05-25 16:16:28 +08:00
henry.chen
20e89d6a76 fix(ci): script file name 2023-05-25 16:08:45 +08:00
3 changed files with 11 additions and 2 deletions

View File

@@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [2.2.3](https://github.com/eiblog/eiblog/compare/v2.2.2...v2.2.3) (2023-05-25)
### Bug Fixes
* **ci:** script file name ([20e89d6](https://github.com/eiblog/eiblog/commit/20e89d6a76f01aee60b98f8ae43a2c65b4fb3904))
### [2.2.2](https://github.com/eiblog/eiblog/compare/v2.2.1...v2.2.2) (2023-05-25)
### [2.2.1](https://github.com/eiblog/eiblog/compare/v2.2.0...v2.2.1) (2023-05-17)

View File

@@ -2,7 +2,8 @@ FROM golang:1.20 AS builder
WORKDIR /eiblog
COPY . .
RUN ./scripts/build.sh backup
RUN pwd
RUN ./scripts/run_build.sh backup
FROM alpine:latest

View File

@@ -2,7 +2,8 @@ FROM golang:1.20 AS builder
WORKDIR /eiblog
COPY . .
RUN ./scripts/build.sh eiblog
RUN pwd
RUN ./scripts/run_build.sh eiblog
FROM alpine:latest