Skip to content

Commit 1a9903f

Browse files
committed
add pages
1 parent 9c740fb commit 1a9903f

127 files changed

Lines changed: 3052 additions & 630 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Deploy pages
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [main]
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: pages
15+
cancel-in-progress: false
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
21+
steps:
22+
- uses: actions/checkout@v4
23+
24+
- uses: actions/setup-node@v4
25+
with:
26+
node-version: 'lts/*'
27+
28+
- name: Setup @antfu/ni
29+
run: npm i -g @antfu/ni
30+
31+
- name: Install dependencies
32+
run: nci
33+
34+
- name: Build
35+
run: nr build --base /${{github.event.repository.name}}/
36+
37+
- name: Setup Pages
38+
uses: actions/configure-pages@v4
39+
40+
- uses: actions/upload-pages-artifact@v3
41+
with:
42+
path: dist
43+
44+
deploy:
45+
environment:
46+
name: github-pages
47+
url: ${{ steps.deployment.outputs.page_url }}
48+
needs: build
49+
runs-on: ubuntu-latest
50+
name: Deploy
51+
steps:
52+
- name: Deploy to GitHub Pages
53+
id: deployment
54+
uses: actions/deploy-pages@v4

.gitmodules

Lines changed: 0 additions & 6 deletions
This file was deleted.

bin/asm

-59.7 KB
Binary file not shown.

cheatsheet.md

Lines changed: 0 additions & 193 deletions
This file was deleted.

corewar

Lines changed: 0 additions & 1 deletion
This file was deleted.

corewar-vscode-extension

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/404.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Corewar Tournament - Slidev</title>
7+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600&family=Fira+Code:wght@200;400;600&display=swap" type="text/css">
8+
<link rel="icon" href="https://cdn.jsdelivr.net/gh/slidevjs/slidev/assets/favicon.png">
9+
<meta property="slidev:version" content="51.6.0">
10+
<meta property="og:title" content="Corewar Tournament - Slidev"> <script type="module" crossorigin src="/assets/index--A-0jOOq.js"></script>
11+
<link rel="modulepreload" crossorigin href="/assets/modules/vue-CDG4YZav.js">
12+
<link rel="modulepreload" crossorigin href="/assets/modules/shiki-BeExnT8c.js">
13+
<link rel="stylesheet" crossorigin href="/assets/modules/shiki-Bxv373Z5.css">
14+
<link rel="stylesheet" crossorigin href="/assets/index-DOPHNrtu.css">
15+
</head>
16+
<body>
17+
<div id="app"></div>
18+
<div id="mermaid-rendering-container"></div>
19+
</body>
20+
</html>

dist/_redirects

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* /index.html 200

dist/assets/404-n_Eqdu3W.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.page-link[data-v-2af184e6]{border-radius:.25rem;background-color:#9ca3af1a;padding:.5rem 1rem}.page-link[data-v-2af184e6]:hover{background-color:#9ca3af33}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.v-popper--theme-menu .v-popper__arrow-inner{border-color:#9ca3af33}

0 commit comments

Comments
 (0)