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
- git pull --rebase
- vmware workstation player
- json string
- 방송대
- github
- camel case
- git
- window10
- 소비통장
- git pull
- 취업
- java
- 정처기
- 오블완
- window11 Education
- IAMPORT
- git 설정
- window11
- window10 Education
- 취성패
- 방통대
- 티스토리챌린지
- 런던뮤지컬
- snake case
- 운영체제
- Spring Boot
- ObjectMapper
- 자바
- 윈도우10 Education
- 아임포트
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