Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd committed Mar 11, 2024
1 parent a744299 commit 432250e
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 2,277 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ permissions:
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
cancel-in-progress: true

jobs:
# Single deploy job since we're just deploying
Expand All @@ -31,13 +31,22 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: '.'
# Upload dist repository
path: './dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
2,240 changes: 0 additions & 2,240 deletions docs/assets/index-1nKAU-PU.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/assets/index-qURKB9bR.css

This file was deleted.

9 changes: 0 additions & 9 deletions docs/discord_logo.svg

This file was deleted.

Binary file removed docs/favicon.ico
Binary file not shown.
9 changes: 0 additions & 9 deletions docs/github_logo.svg

This file was deleted.

14 changes: 0 additions & 14 deletions docs/index.html

This file was deleted.

Binary file removed docs/logo.png
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build --outDir docs",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
Expand Down
1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ import tsconfigPaths from 'vite-tsconfig-paths'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), tsconfigPaths()],
base: "/escrow-playground/"
})

0 comments on commit 432250e

Please sign in to comment.