DevOps/Github
-
Github 프로필 꾸미기DevOps/Github 2022. 4. 25. 23:09
github에 자신의 아이디와 동일한 repository 를 생성시 프로필을 만들 수 있습니다. 만들어 두면 차후에 이력서로 사용하거나 이력을 설명하기에 매우 좋습니다. 위의 스크린샷 처럼 깃허브 캐릭터가 뜨면서 특별한 저장소라며 public으로 README를 초기화하고 시작하라고 안내가 뜹니다. 저는 이미 생성을 하여서 이미 존재하는 repository 라고 표기되고 있습니다. repository 가 생성된 후에는 README.md에 markdown으로 작성하려 프로필을 쓸 수 있습니다. 자신의 github에 접속하면 위와 같이 README 에작성한 내용이 바로 표기됩니다. https://github.com/DNights DNights - Overview I'm android developer. DNi..
-
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 -..
-
GitHub Actions - 환경변수 등록 방법DevOps/Github 2020. 3. 21. 00:05
github actions환경변수 등록하기 1. 상단 탭의 Settings 로 이동합니다. 2. 좌측 Secrets 항목으로 이동합니다. 3. "Add a New secret" 항목 클릭 4. Name , Value 를 작성합니다. 5. "Add secret" 클릭 6. 등록된 Name 을 복사합니다. 7. workflows 의 yml 파일에 등록한 secrets 를 호출하여 사용합니다. ${{ screts.XXXX }} 로 호출하여 사용 할 수 있습니다. android.yml name: Android CI #on: [push] on: push: branches: - buildTest jobs: build: runs-on: ubuntu-latest env: TEST2: ${{ secrets.TEST_2 ..
-
Github Action - Android build setting startDevOps/Github 2020. 3. 5. 11:59
github의 action 을 사용하여 안드로이드 빌드 셋팅을 하도록 하겠습니다. https://github.com/DNights/AndroidActionTest DNights/AndroidActionTest Contribute to DNights/AndroidActionTest development by creating an account on GitHub. github.com github에서 제공하는 action을 이용하여서 빌드 환경을 구축하도록 해보겠습니다. 적용하고자 하는 repsitory에서 상단에 탭 4번째에 Action이라는 항목이 있습니다. Action 탭을 클릭합니다. 최초 시작시 자신이 구성하고자 하는 환경의 기본셋팅을 지원해줍니다. 저는 android 빌드를 할 예정이기 때문에 An..
-
Jekyll을 사용하여 GitHub 블로그 만들기DevOps/Github 2019. 8. 8. 22:42
https://jekyllrb-ko.github.io/ Jekyll • Simple, blog-aware, static sites Transform your plain text into static websites and blogs jekyllrb.com [github.io 페이지 만들기] https://dnight.tistory.com/entry/GitHubio-%ED%8E%98%EC%9D%B4%EC%A7%80-%EB%A7%8C%EB%93%A4%EA%B8%B0 GitHub.io 페이지 만들기 Github 를 통해서 홈페이지 또는 블로그 같은 웹페이지를 표시하고 사용 할 수 있습니다. https://pages.github.com/ GitHub Pages Websites for you and your pr..
-
GitHub.io 페이지 만들기DevOps/Github 2019. 8. 8. 15:12
Github 를 통해서 홈페이지 또는 블로그 같은 웹페이지를 표시하고 사용 할 수 있습니다. https://pages.github.com/ GitHub Pages Websites for you and your projects, hosted directly from your GitHub repository. Just edit, push, and your changes are live. pages.github.com 위의 사진처럼 new repository 를 생성하고 Repository name에 (username).github.io를 입력합니다. 그리고 Create repository 버튼을 눌러 Repository를 생성합니다. 그러면 페이지 생성은 완료 되었습니다. 생성한 repositiry 에서 S..