Skip to content

Commit

Permalink
feat: support https proxy env variables (nrwl#121)
Browse files Browse the repository at this point in the history
Co-authored-by: Miroslav Jonas <[email protected]>
  • Loading branch information
FrozenPandaz and meeroslav authored Oct 6, 2023
1 parent 0e2d18b commit 10fdd4b
Show file tree
Hide file tree
Showing 6 changed files with 31,617 additions and 8,435 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ width="100%" alt="Nx - Smart, Extensible Build Framework"></p>

**NOTE:** This documentation is for version `2.x.x+` which now uses the GitHub API to track successful workflows. You can find documentation for version `1.x.x` which used GIT tags [here](https://github.com/nrwl/nx-set-shas/blob/v1/README.md).

**NOTE:** The `v4` does no longer support deprecated Node versions. Supported version is `Node v18+`.

## Example Usage

**.github/workflows/ci.yml**
Expand All @@ -37,7 +39,7 @@ jobs:
# OPTION 1) Environment variables
# ===========================================================================
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v3
uses: nrwl/nx-set-shas@v4

- run: |
echo "BASE: ${{ env.NX_BASE }}"
Expand All @@ -48,7 +50,7 @@ jobs:
# ===========================================================================
- name: Derive appropriate SHAs for base and head for `nx affected` commands
id: setSHAs
uses: nrwl/nx-set-shas@v3
uses: nrwl/nx-set-shas@v4

- run: |
echo "BASE: ${{ steps.setSHAs.outputs.base }}"
Expand All @@ -62,7 +64,7 @@ jobs:

<!-- start configuration-options -->
```yaml
- uses: nrwl/nx-set-shas@v3
- uses: nrwl/nx-set-shas@v4
with:
# The "main" branch of your repository (the base branch which you target with PRs).
# Common names for this branch include main and master.
Expand Down
Loading

0 comments on commit 10fdd4b

Please sign in to comment.