GitHub Actions에서는 아티팩트를 통해 워크플로 작업 간에 데이터를 공유할 수 있습니다. 업로드 아티팩트 작업을 사용하면 사용자는 이름 및 경로 매개변수가 있는 단일 아티팩트를 게시할 수 있고, 여러 아티팩트의 경우 업로드 아티팩트 작업 사양
github Actions에서 아티팩트를 게시하는 방법은 무엇입니까?
예, GitHub Actions에서 아티팩트를 게시할 수 있습니다. 아티팩트를 게시하려면 작업을 사용할 수 있습니다. upload-artifact
작업의 구문은 다음과 같습니다.upload-artifact
<code class="yaml">- uses: actions/upload-artifact@v2 with: name: artifact-name path: path-to-artifact</code>
디렉터리의 콘텐츠와 함께 my-artifact
이라는 아티팩트를 게시합니다.dist
<code class="yaml">- uses: actions/upload-artifact@v2 with: name: my-artifact path: dist</code>
github 액션에서 여러 아티팩트를 게시하는 방법은 무엇입니까?
GitHub Actions에서 여러 아티팩트를 게시하려면 액션을 사용할 수 있습니다. upload-artifacts
작업의 구문은 다음과 같습니다.upload-artifacts
<code class="yaml">- uses: actions/upload-artifacts@v2 with: artifacts: artifact-paths</code>
및 my-artifact1
를 게시합니다.my-artifact2
<code class="yaml">- uses: actions/upload-artifacts@v2 with: artifacts: dist/my-artifact1.zip,dist/my-artifact2.zip</code>
github Actions에 아티팩트를 게시할 수 있나요?
예, GitHub Actions에 아티팩트를 게시할 수 있습니다. 아티팩트를 게시하려면 작업 또는 upload-artifact
작업upload-artifacts
을 사용할 수 있습니다.
위 내용은 github 액션에 아티팩트를 게시하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!