Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
4ra1n committed Feb 1, 2024
1 parent ffe2d69 commit 3de99aa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/y4-lang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
steps:

- name: set version
run: echo "VERSION=v0.0.2" >> $GITHUB_ENV
run: echo "VERSION=v0.0.3" >> $GITHUB_ENV

- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:22.04
LABEL author="4ra1n"
LABEL github="https://github.com/4ra1n"

ENV Y4_VERSION v0.0.2
ENV Y4_VERSION v0.0.3

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import (
// 全局的版本号和构建时间
func init() {
// VERSION
cli.Version = "v0.0.2"
cli.Version = "v0.0.3"
// BUILD TIME
cli.BuildTime = "2024/01/30"
cli.BuildTime = "2024/02/01"
}

// Y4-Lang
Expand Down
2 changes: 1 addition & 1 deletion docker-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

IMAGE_NAME="y4-lang"
CONTAINER_NAME="y4-lang-builder"
Y4_VERSION="v0.0.2"
Y4_VERSION="v0.0.3"

EXISTING_IMAGE=$(docker images -q $IMAGE_NAME:$Y4_VERSION)
if [ ! -z "$EXISTING_IMAGE" ]; then
Expand Down

0 comments on commit 3de99aa

Please sign in to comment.