feat: added omnipin and ens deployments bec542a8
Steve · 2025-11-18 23:02 3 file(s) · +7 −3
package.json +5 −1
7 7
		"start": "astro dev",
8 8
		"sync": "astro sync",
9 9
		"build": "astro build",
10 +
		"build:ens": "SITE_URL=https://stevedylandev.eth.limo astro build",
10 11
		"preview": "astro preview",
11 -
		"format": "biome format --write src package.json"
12 +
		"format": "biome format --write src package.json",
13 +
		"deploy:orbiter": "orbiter deploy",
14 +
		"deploy:ens": "bun run build:ens && omnipin deploy --ens stevedylandev.eth",
15 +
		"deploy": "bun run deploy:orbiter && bun run deploy:ens"
12 16
	},
13 17
	"devDependencies": {
14 18
		"@astrojs/mdx": "^3.1.6",
src/pages/feed.xml.ts +1 −1
33 33
	return rss({
34 34
		title: siteMeta.title,
35 35
		description: siteMeta.description,
36 -
		site: "https://stevedylan.dev",
36 +
		site: process.env.SITE_URL || "https://stevedylan.dev",
37 37
		items: items,
38 38
	});
39 39
}
src/pages/rss.xml.ts +1 −1
33 33
	return rss({
34 34
		title: siteMeta.title,
35 35
		description: siteMeta.description,
36 -
		site: "https://stevedylan.dev",
36 +
		site: process.env.SITE_URL || "https://stevedylan.dev",
37 37
		items: items,
38 38
	});
39 39
}