This article provides guidance on navigating to specific directories within GitHub Actions workflows using the cd command. It also explains how to create new directories with mkdir and set a default working directory using the working-directory key.
要导航到 GitHub Actions 工作流程中的特定目录,请使用 cd
命令。 cd
命令采用单个参数,它是您要更改到的目录的路径。例如,要更改为 docs
目录,您可以使用以下命令:
<code>cd docs</code>
您还可以使用 cd
命令创建新目录。要创建名为 new-directory
的新目录,您可以使用以下命令:
<code>mkdir new-directory</code>
创建新目录后,您可以使用 cd
命令更改到该目录。
以下命令可用于更改 GitHub Actions 中的工作目录:
cd
mkdir
cd
命令更改当前工作目录。 mkdir
命令创建一个新目录。
要为 GitHub Actions 工作流程设置默认工作目录,请使用working-directory
输入您的工作流程文件。 working-directory
键采用单个参数,它是要设置为默认工作目录的目录的路径。例如,要将 docs
目录设置为默认工作目录,您可以使用以下配置:
<code>on: push jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: cd docs && echo "This is the docs directory."</code>
此配置将使 build
作业在 docs
目录中运行。
以上是如何更改 github actions 中的目录的详细内容。更多信息请关注PHP中文网其他相关文章!