In GitHub Actions, artifacts enable sharing data among workflow jobs. Using the upload-artifact action, users can publish a single artifact with name and path parameters, while for multiple artifacts, they can utilize the upload-artifacts action spec
如何在 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 Actions 中发布多个工件?
要在 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 actions 中发布工件的详细内容。更多信息请关注PHP中文网其他相关文章!