Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- camel case
- snake case
- window10
- ObjectMapper
- java
- 오블완
- git pull
- 정처기
- git
- git 설정
- github
- 윈도우10 Education
- 운영체제
- 취업
- 방통대
- window11 Education
- 취성패
- 방송대
- IAMPORT
- 자바
- 티스토리챌린지
- window11
- 소비통장
- window10 Education
- git pull --rebase
- 런던뮤지컬
- 아임포트
- json string
- Spring Boot
- vmware workstation player
Archives
- Today
- Total
목록github secrets (1)
홍차의 미로찾기
[CICD] github actions 변수 사용하기 (env 파일, secrets and variables)
github actions 스크립트를 작성하면서 알게된 변수 사용하는 방법을 몇 가지 정리해보겠습니다. 1. 변수가 작성된 env 파일 사용2. github actions repository secrets 변수3. github actions repository variables 변수 변수 사용 방식 3가지 1. repository root 경로에 env 파일 생성 후 로드이 방식은 각 리포지토리의 root 경로에 변수를 작성한 env 파일을 로드해서 사용하는 방식입니다.우선, env 파일을 생성 후 사용할 변수를 작성합니다. deploy-config.envPROJECT_NAME=myserver-apiPORT=8081 이렇게 작성된 변수는 github actions 스크립트에서 로드 후, 사용할 수 있습니..
프로그래밍/BUILD DEPLOY
2024. 10. 20. 13:53