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

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