Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,3 @@ jobs:
cache-dependency-path: website/package-lock.json
- run: npm ci --prefix website
- run: npm run build --prefix website
- uses: actions/upload-artifact@v4
with:
name: website-build
path: website/build
if-no-files-found: error

deploy:
needs: build
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: website-build
path: website/build
- uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: pages deploy website/build --project-name=linear-cli-docs --branch=main
- name: Smoke test production site
run: curl --fail --retry 5 --retry-delay 5 --retry-connrefused https://linear-cli.enolalab.com/
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ Thumbs.db

# Config (may contain API keys)
config.yaml
.wrangler/
14 changes: 14 additions & 0 deletions website/wrangler.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"$schema": "./node_modules/wrangler/config-schema.json",
"name": "linear-cli-docs",
"compatibility_date": "2026-08-02",
"assets": {
"directory": "./build"
},
"routes": [
{
"pattern": "linear-cli.enolalab.com",
"custom_domain": true
}
]
}
Loading