github actions
-
Github Actions 소개DevOps/Github 2020. 11. 23. 11:10
github.com/features/actions Features • GitHub Actions Easily build, package, release, update, and deploy your project in any language—on GitHub or any external system—without having to run code yourself. github.com Github Actions 는 Github에서 제공하는 CI/CD 도구로 workflow 자동화를 지원해주는 기능입니다. github 저장소에 있는 프로젝트 내 .github/workflows 안에 작성된 yml 파일로 구동됩니다. 기본적으로 제공하는 가상머신의 하드웨어 사양은 아래와 같습니다. 2-core CPU 7 GB o..
-
Github Actions - 환경변수로 Keystore 저장하여 사용하기DevOps/Github 2020. 5. 1. 15:16
터미널에서 Keystore 파일을 base64로 변경하여 파일로 저장합니다. openssl base64 -in [keystore file path] -out [base64 file path] 저장된 Base64의 파일내용을 복사하여 Github의 프로젝트 Settings -> Secrets 에 valuse에 Base64 파일 내용을 붙여서 환경변수로 추가합니다. 환경변수로 등록하는 방법은 아래 포스팅에 자세하게 작성되어 있습니다. https://dnight.tistory.com/entry/GitHub-Actions-%ED%99%98%EA%B2%BD%EB%B3%80%EC%88%98-%EB%93%B1%EB%A1%9D-%EB%B0%A9%EB%B2%95?category=846519 GitHub Actions -..