Skip to content

Commit

Permalink
Merge pull request #31 from cloud-barista/feature/update-doc-go-version
Browse files Browse the repository at this point in the history
Add skip CD feature to workflow and update documentation for Go versi…
  • Loading branch information
heedaeshin authored Aug 23, 2024
2 parents f6d7dcc + f9a3165 commit 2fb2499
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/continuous-delivery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ jobs:
publish-container-image:
# Job name is "Publish a container image"
name: Publish a container image

if: github.repository_owner == 'cloud-barista'
if: github.repository_owner == 'cloud-barista' && !contains(github.event.head_commit.message, '[skip cd]')

# This job runs on Ubuntu-latest (Ubuntu 22.04 LTS checked on 2023-12-13)
# See https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Stage 1 - Go Build
##############################################################

FROM golang:latest AS builder
FROM golang:1.23 AS builder
WORKDIR /opt
COPY . .
RUN go build -o app .
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Data Manager 데이터 마이그레이션 기술의 검증을 위한 환경을

## Environments:
* OS: Ubuntu 22.04 LTS, Windows 10 Pro
* Go: 1.21.3
* Go: 1.23


## Installation and Testing Guide
Expand Down
4 changes: 2 additions & 2 deletions docs/Datamanager-Function-Specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

## 사전 준비

- linux (ubuntu 20.04) 대상
- [Golang 1.21.3](https://go.dev/dl/) 설치
- linux (ubuntu 22.04) 대상
- [Golang 1.23](https://go.dev/dl/) 설치
- CSP별 인증 정보
- [aws](https://docs.aws.amazon.com/ko_kr/IAM/latest/UserGuide/id_credentials_access-keys.html#Using_CreateAccessKey)
- [gcp](https://developers.google.com/workspace/guides/create-credentials?hl=ko)
Expand Down

0 comments on commit 2fb2499

Please sign in to comment.