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.
To navigate to a specific directory within your GitHub Actions workflow, use the cd
command. The cd
command takes a single argument, which is the path to the directory you want to change to. For example, to change to the docs
directory, you would use the following command:
<code>cd docs</code>
You can also use the cd
command to create new directories. To create a new directory called new-directory
, you would use the following command:
<code>mkdir new-directory</code>
Once you have created a new directory, you can use the cd
command to change to that directory.
The following commands can be used to change the working directory in GitHub Actions:
cd
mkdir
The cd
command changes the current working directory. The mkdir
command creates a new directory.
To set a default working directory for your GitHub Actions workflow, use the working-directory
key in your workflow file. The working-directory
key takes a single argument, which is the path to the directory you want to set as the default working directory. For example, to set the docs
directory as the default working directory, you would use the following configuration:
<code>on: push jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: cd docs && echo "This is the docs directory."</code>
This configuration will cause the build
job to run in the docs
directory.
Das obige ist der detaillierte Inhalt vonSo ändern Sie das Verzeichnis in Github-Aktionen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!