Skip to content

Commit d28f02e

Browse files
committed
docs: update more descriptions
1 parent 0cf9cdb commit d28f02e

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,19 @@ Follow the long-form tutorial on [Continuous Integration with GitHub Actions](ht
5252

5353
### Authentication
5454

55-
| Input | Description | Required | Default |
56-
| ------------ | ---------------------------------------------------------------------------------------------- | -------- | ------- |
57-
| `authToken` | Authentication token for Cachix, required for private cache access or to push to any cache | | |
58-
| `signingKey` | Private signing key for self-signed caches, used in addition to auth token to sign store paths | | |
55+
| Input | Description | Required | Default |
56+
| ------------ | -------------------------------------------------------------------------------------------------- | -------- | ------- |
57+
| `authToken` | Authentication token for Cachix, required for private cache access or to push to any cache | | |
58+
| `signingKey` | Private signing key for self-signed caches, used in addition to the auth token to sign store paths | | |
5959

6060
### Push Configuration
6161

62-
| Input | Description | Required | Default |
63-
| ------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ------- |
64-
| `skipPush` | Set to `true` to only pull from cache without pushing any build results | | `false` |
65-
| `useDaemon` | Use Cachix daemon mode to push store paths as they're built via post-build hooks. See [Push modes](#push-modes) for more information | | `true` |
66-
| `pathsToPush` | Whitespace-separated list of specific store paths to push. Leave empty to push all build results | | |
67-
| `pushFilter` | Regular expression to exclude derivations from pushing, for example `"(-source$ \| nixpkgs\.tar\.gz$)"`. Ignored if `pathsToPush` is set. Warning: paths may still be pushed if they are part of another path's closure | |
62+
| Input | Description | Required | Default |
63+
| ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ------- |
64+
| `skipPush` | Set to `true` to only pull from the cache without pushing any build results | | `false` |
65+
| `useDaemon` | Use Cachix daemon mode to push store paths as they're built via post-build hooks. See [Push modes](#push-modes) for more information | | `true` |
66+
| `pathsToPush` | Whitespace-separated list of specific store paths to push. Leave empty to push all build results | | |
67+
| `pushFilter` | Regular expression to exclude derivations from being pushed, for example `"(-source$ \| nixpkgs\.tar\.gz$)"`. Ignored if `pathsToPush` is set. Warning: paths may still be pushed if they are part of another path's closure | |
6868

6969
### Advanced Options
7070

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ inputs:
1313
authToken:
1414
description: "Authentication token for Cachix, required for private cache access or to push to any cache"
1515
signingKey:
16-
description: "Private signing key for self-signed caches, used in addition to auth token to sign store paths"
16+
description: "Private signing key for self-signed caches, used in addition to the auth token to sign store paths"
1717

1818
# Push Configuration
1919
skipPush:
20-
description: "Set to true to only pull from cache without pushing any build results"
20+
description: "Set to true to only pull from the cache without pushing any build results"
2121
default: "false"
2222
useDaemon:
2323
description: "Use Cachix daemon mode to push store paths as they're built via post-build hooks. See Push modes in README for more information"
2424
default: "true"
2525
pathsToPush:
2626
description: "Whitespace-separated list of specific store paths to push. Leave empty to push all build results"
2727
pushFilter:
28-
description: "Regular expression to exclude derivations from pushing, for example \"(-source$|nixpkgs\\.tar\\.gz$)\". Ignored if pathsToPush is set. Warning: paths may still be pushed if they are part of another path's closure."
28+
description: "Regular expression to exclude derivations from being pushed, for example \"(-source$|nixpkgs\\.tar\\.gz$)\". Ignored if pathsToPush is set. Warning: paths may still be pushed if they are part of another path's closure."
2929

3030
# Advanced Options
3131
skipAddingSubstituter:

0 commit comments

Comments
 (0)