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
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: bun run build

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: ./dist

Expand All @@ -44,4 +44,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4
30 changes: 14 additions & 16 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,35 +10,33 @@ export default defineConfig({
title: "Payment Pointers",
description:
"Payment Pointers are a standardized identifier for payment accounts. In the same way that an email address provides an identifier for a mailbox in the email ecosystem a payment pointer is used by an account holder to share the details of their account with a counter-party.",
head: [
{
tag: 'script',
attrs: {
defer: true,
'data-website-id': 'cab4fd0a-e2db-4666-a974-5b199f0d6d43',
src: 'https://ilf-site-analytics.netlify.app/script.js',
'data-domains': 'paymentpointers.org'
}
}
],
customCss: [
head: [
{
tag: "script",
attrs: {
defer: true,
"data-website-id": "cab4fd0a-e2db-4666-a974-5b199f0d6d43",
src: "https://ilf-site-analytics.netlify.app/script.js",
"data-domains": "paymentpointers.org",
},
},
],
customCss: [
"./node_modules/@interledger/docs-design-system/src/styles/teal-theme.css",
"./node_modules/@interledger/docs-design-system/src/styles/ilf-docs.css",
],
plugins: [starlightLinksValidator()],
components: {
Header: "./src/components/Header.astro",
PageSidebar: './src/components/PageSidebar.astro'
PageSidebar: "./src/components/PageSidebar.astro",
},
expressiveCode: {
styleOverrides: {
borderColor: "transparent",
borderRadius: "var(--border-radius)",
},
},
social: {
github: "https://github.com/interledger/paymentpointers.org",
},
social: [{ icon: "github", label: "GitHub", href: "https://github.com/interledger/paymentpointers.org" }],
sidebar: [
{ label: "Explainer", link: "/" },
{ label: "Design Goals", link: "/goals" },
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/starlight": "^0.31.1",
"@interledger/docs-design-system": "^0.6.1",
"astro": "^5.1.7",
"sharp": "^0.33.5",
"starlight-links-validator": "^0.14.1"
"@astrojs/starlight": "^0.33.0",
"@interledger/docs-design-system": "^0.6.2",
"astro": "^5.6.1",
"sharp": "^0.34.1",
"starlight-links-validator": "^0.15.0"
}
}