참고 항목
GitHub 호스트 실행기는 현재 GitHub Enterprise Server에서 지원되지 않습니다. GitHub public roadmap에 예정된 향후 지원에 대해 자세히 알아볼 수 있습니다.
By default, GitHub stores build logs and artifacts for 90 days, and you can customize this retention period, depending on the type of repository. For more information, see 리포지토리에 대한 GitHub Actions 설정 관리.
해당 단계를 수행하려면 리포지토리에 대한 읽기 권한이 필요합니다.
-
GitHub에서 리포지토리의 기본 페이지로 이동합니다.
-
리포지토리 이름 아래에서 작업을 클릭합니다.
-
왼쪽 사이드바에서 확인할 워크플로를 클릭합니다.
-
워크플로 실행 목록에서 실행 이름을 클릭하여 워크플로 실행 요약을 확인합니다.
-
In the "Artifacts" section, click the artifact you want to download.
참고 항목
GitHub CLI에 대한 자세한 내용은 GitHub CLI 정보을(를) 참조하세요.
GitHub CLI will download each artifact into separate directories based on the artifact name. If only a single artifact is specified, it will be extracted into the current directory.
To download all artifacts generated by a workflow run, use the run download
subcommand. Replace run-id
with the ID of the run that you want to download artifacts from. If you don't specify a run-id
, GitHub CLI returns an interactive menu for you to choose a recent run.
gh run download RUN_ID
To download a specific artifact from a run, use the run download
subcommand. Replace run-id
with the ID of the run that you want to download artifacts from. Replace artifact-name
with the name of the artifact that you want to download.
gh run download RUN_ID -n ARTIFACT_NAME
You can specify more than one artifact.
gh run download RUN_ID> -n ARTIFACT_NAME-1 -n ARTIFACT_NAME-2
To download specific artifacts across all runs in a repository, use the run download
subcommand.
gh run download -n ARTIFACT_NAME-1 ARTIFACT_NAME-2