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
2 changes: 1 addition & 1 deletion .github/workflows/archival.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Archival Build
uses: jesseditson/archival@main
uses: archival-dev/archival@main
publish-pages:
runs-on: ubuntu-latest
environment: archival.dev
Expand Down
2 changes: 1 addition & 1 deletion objects/docs/building-with-claude.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ content = """
We also publish a Claude plugin so you can generate previews whenever you like. Since subdomains are $1 per month per site, this is a great way to build fun sites quickly.

```
/plugin marketplace add jesseditson/archival
/plugin marketplace add archival-dev/archival
/plugin install archival@archival
```
"""
Expand Down
2 changes: 1 addition & 1 deletion objects/docs/deploying.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Archival Build
uses: jesseditson/archival@main
uses: archival-dev/archival@main
```

The action accepts a few optional inputs:
Expand Down
2 changes: 1 addition & 1 deletion pages/_connect.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<h2 class="section-title">{{ objects.home.contact_title }}</h2>
<div class="section-content connect-grid">
<a
href="https://github.com/jesseditson/archival"
href="https://github.com/archival-dev/archival"
class="connect-item"
title="GitHub"
data-umami-event="connect-github"
Expand Down
2 changes: 1 addition & 1 deletion pages/manifesto.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<h2 class="section-title">{{ home.contact_title }}</h2>
<div class="section-content connect-grid">
<a
href="https://github.com/jesseditson/archival"
href="https://github.com/archival-dev/archival"
class="connect-item"
title="GitHub"
data-umami-event="connect-github"
Expand Down
2 changes: 1 addition & 1 deletion pages/pricing.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
<h2 class="section-title">{{ home.contact_title }}</h2>
<div class="section-content connect-grid">
<a
href="https://github.com/jesseditson/archival"
href="https://github.com/archival-dev/archival"
class="connect-item"
title="GitHub"
data-umami-event="connect-github"
Expand Down
2 changes: 1 addition & 1 deletion scripts/fetch-agent-skill.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const REF = process.env.ARCHIVAL_AGENT_REF ?? "refs/heads/main";
// before they land upstream.
const SOURCE =
process.env.ARCHIVAL_AGENT_SOURCE ??
`https://raw.githubusercontent.com/jesseditson/archival/${REF}`;
`https://raw.githubusercontent.com/archival-dev/archival/${REF}`;

const outDir = new URL("../public/agent/", import.meta.url).pathname;

Expand Down
2 changes: 1 addition & 1 deletion scripts/fetch-schemas.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const REF = process.env.ARCHIVAL_SCHEMA_REF ?? "refs/heads/main";
// before they land upstream.
const SOURCE =
process.env.ARCHIVAL_SCHEMA_SOURCE ??
`https://raw.githubusercontent.com/jesseditson/archival/${REF}`;
`https://raw.githubusercontent.com/archival-dev/archival/${REF}`;
const CANONICAL_ID_PREFIX = "https://archival.dev/schemas/";

const outDir = new URL("../public/schemas/", import.meta.url).pathname;
Expand Down
2 changes: 1 addition & 1 deletion src/build-with-claude.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const buildPrompt = (start: StartResponse): string => {
const prompt = [
"Build me an Archival website.",
"",
"Read https://raw.githubusercontent.com/jesseditson/archival/main/plugins/archival/skills/new/SKILL.md and follow it exactly.",
"Read https://raw.githubusercontent.com/archival-dev/archival/main/plugins/archival/skills/new/SKILL.md and follow it exactly.",
`Publish token: ${start.token}`,
`Preview name: ${start.name}`,
`Archival version: ${start.archivalVersion}`,
Expand Down
Loading