Skip to content

Commit 9f6f72c

Browse files
committed
fix: remove closed source warning in nixos node operation docs
1 parent 9fd861c commit 9f6f72c

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: '[preview] 🔶 Publish to Cloudflare Pages'
5050
env:
5151
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
52-
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}
52+
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
5353
run: npx --yes wrangler@latest pages --project-name="docs" deploy result >> /tmp/docs_deploy.txt
5454

5555
- name: Set Deploy Output
@@ -90,7 +90,7 @@ jobs:
9090
- name: '[workflow-dispatch] 🔶 Publish to Cloudflare Pages'
9191
env:
9292
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
93-
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}
93+
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
9494
run: npx --yes wrangler@latest pages --project-name="docs" deploy result
9595

9696
deploy-production:
@@ -114,5 +114,5 @@ jobs:
114114
- name: '[production] 🔶 Publish to Cloudflare Pages'
115115
env:
116116
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
117-
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}
117+
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
118118
run: npx --yes wrangler@latest pages --project-name="docs" --branch="main" deploy result

docs/src/content/docs/infrastructure/node-operators/nixos.mdx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,12 @@ The current example does not support remote signers yet. We will expand the guid
1616

1717
Below is an example configuration.nix which can be used in production.
1818

19-
:::caution
20-
21-
The example currently uses `git+ssh://` syntax rather than `github:` syntax because our repository is not public yet. Once it is, this will be simplified. When this happens, `GIT_LFS_SKIP_SMUDGE` will also no longer be required.
22-
23-
:::
2419

2520
```nix
2621
{
2722
inputs = {
2823
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
29-
union.url = "git+ssh://git@github.com/unionlabs/union";
24+
union.url = "github:unionlabs/union";
3025
};
3126
outputs = { self, nixpkgs, union, ... }:
3227
{

0 commit comments

Comments
 (0)