-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: lookup pnpm store path * build: bump package version Co-authored-by: James Henry <[email protected]>
- Loading branch information
1 parent
57e3ef5
commit e00f83b
Showing
4 changed files
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,7 @@ concurrency: | |
jobs: | ||
main: | ||
name: Nx Cloud - Main Job | ||
uses: nrwl/ci/.github/workflows/[email protected].1 | ||
uses: nrwl/ci/.github/workflows/[email protected].2 | ||
with: | ||
# NOTE: Here we are using the special `nx-cloud record` command to ensure that any commands we run that do not go through the cloud task runner natively | ||
# (i.e. anything that starts with `nx run`/`nx run-many`/`nx affected --target`), are still captured in the Nx Cloud UI and Github App comment for | ||
|
@@ -75,7 +75,7 @@ jobs: | |
agents: | ||
name: Nx Cloud - Agents | ||
uses: nrwl/ci/.github/workflows/[email protected].1 | ||
uses: nrwl/ci/.github/workflows/[email protected].2 | ||
with: | ||
number-of-agents: 3 | ||
``` | ||
|
@@ -110,15 +110,15 @@ concurrency: | |
jobs: | ||
main: | ||
name: Nx Cloud - Main Job | ||
uses: nrwl/ci/.github/workflows/[email protected].1 | ||
uses: nrwl/ci/.github/workflows/[email protected].2 | ||
secrets: | ||
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | ||
NX_CLOUD_AUTH_TOKEN: ${{ secrets.NX_CLOUD_AUTH_TOKEN }} | ||
with: ... | ||
agents: | ||
name: Nx Cloud - Agents | ||
uses: nrwl/ci/.github/workflows/[email protected].1 | ||
uses: nrwl/ci/.github/workflows/[email protected].2 | ||
secrets: | ||
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | ||
NX_CLOUD_AUTH_TOKEN: ${{ secrets.NX_CLOUD_AUTH_TOKEN }} | ||
|
@@ -134,7 +134,7 @@ See the annotated configuration below for all explicitly supported secret values | |
<!-- start configuration-options-for-the-main-job --> | ||
|
||
```yaml | ||
- uses: nrwl/ci/.github/workflows/[email protected].1 | ||
- uses: nrwl/ci/.github/workflows/[email protected].2 | ||
# [OPTIONAL] Explicitly supported secret values which can be passed into the workflow from your outer workflow run. | ||
# | ||
# NOTE: You cannot access values from ${{ secrets }} beyond what is explicitly specified here because of the limitations of reusable Github workflows | ||
|
@@ -249,7 +249,7 @@ See the annotated configuration below for all explicitly supported secret values | |
<!-- start configuration-options-for-agent-jobs --> | ||
```yaml | ||
- uses: nrwl/ci/.github/workflows/[email protected].1 | ||
- uses: nrwl/ci/.github/workflows/[email protected].2 | ||
# [OPTIONAL] Explicitly supported secret values which can be passed into the workflow from your outer workflow run. | ||
# | ||
# NOTE: You cannot access values from ${{ secrets }} beyond what is explicitly specified here because of the limitations of reusable Github workflows | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"private": true, | ||
"version": "0.11.1", | ||
"version": "0.11.2", | ||
"description": "This package.json is here purely to control the version of the Action, in combination with https://github.com/JamesHenry/publish-shell-action" | ||
} |