This commit is contained in:
Jaroslav Lobačevski
2024-08-10 09:54:23 +00:00
parent 569e80b678
commit cc6badaea6
4 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
## Description
GitHub Actions allows to define the system PATH variable by writing to a file pointed to by the `GITHUB_PATH` environment variable. Writing to this file will prepend a directory to the system PATH variable and automatically makes it available to all subsequent actions in the current job. E.g.
GitHub Actions allow to define the system PATH variable by writing to a file pointed to by the `GITHUB_PATH` environment variable. Writing to this file will prepend a directory to the system PATH variable and automatically makes it available to all subsequent actions in the current job. E.g.
```bash
echo "$HOME/.local/bin" >> $GITHUB_PATH

View File

@@ -2,7 +2,7 @@
## Description
GitHub Actions allows to define the system PATH variable by writing to a file pointed to by the `GITHUB_PATH` environment variable. Writing to this file will prepend a directory to the system PATH variable and automatically makes it available to all subsequent actions in the current job. E.g.
GitHub Actions allow to define the system PATH variable by writing to a file pointed to by the `GITHUB_PATH` environment variable. Writing to this file will prepend a directory to the system PATH variable and automatically makes it available to all subsequent actions in the current job. E.g.
```bash
echo "$HOME/.local/bin" >> $GITHUB_PATH

View File

@@ -2,7 +2,7 @@
## Description
GitHub Actions allows to define Environment Variables by writing to a file pointed to by the `GITHUB_ENV` environment variable:
GitHub Actions allow to define Environment Variables by writing to a file pointed to by the `GITHUB_ENV` environment variable:
This file should lines in the `KEY=VALUE` format:

View File

@@ -2,7 +2,7 @@
## Description
GitHub Actions allows to define Environment Variables by writing to a file pointed to by the `GITHUB_ENV` environment variable:
GitHub Actions allow to define Environment Variables by writing to a file pointed to by the `GITHUB_ENV` environment variable:
This file should lines in the `KEY=VALUE` format: