사용자 도구

사이트 도구


git:github

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
다음 판 양쪽 다음 판
git:github [2021/01/30 15:30]
kwon37xi
git:github [2021/03/19 09:46]
kwon37xi
줄 52: 줄 52:
 ===== Github release 마지막 버전 자동 다운로드 ===== ===== Github release 마지막 버전 자동 다운로드 =====
   * [[https://gist.github.com/steinwaywhw/a4cd19cda655b8249d908261a62687f8|One Liner to Download the Latest Release from Github Repo]]   * [[https://gist.github.com/steinwaywhw/a4cd19cda655b8249d908261a62687f8|One Liner to Download the Latest Release from Github Repo]]
 +  * 가장 최신버전의 download url 목록
 +<code sh>
 +curl -sL https://api.github.com/repos/<USER>/<REPO>/releases/latest | jq -r '.assets[].browser_download_url'
 +
 +# 이제 그 중에서 linux amd64 를 찾아서 다운로드
 +curl -sL https://api.github.com/repos/<USER>/<REPO>/releases/latest | jq -r '.assets[].browser_download_url' | grep -e '.*-linux_amd64.tar.gz' | wget -i -
 +</code>
 +
 +===== Test Report =====
 +  * [[https://github.com/ScaCap/action-surefire-report|GitHub - ScaCap/action-surefire-report: Reports surefire test results as GitHub Pull Request Check]]
 +
  
git/github.txt · 마지막으로 수정됨: 2021/11/19 10:14 저자 kwon37xi