Skip to content

Commit eccbc47

Browse files
committed
Initial commit
1 parent 5d072b8 commit eccbc47

Some content is hidden

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

82 files changed

+4224
-621
lines changed

.github/workflows/deploy.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Deploy to GitHub Pages
2+
on:
3+
push:
4+
branches: [ main ]
5+
workflow_dispatch:
6+
permissions:
7+
contents: read
8+
pages: write
9+
id-token: write
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout your repository using git
15+
uses: actions/checkout@v4
16+
- name: Install, build, and upload your site
17+
uses: withastro/action@v3
18+
deploy:
19+
needs: build
20+
runs-on: ubuntu-latest
21+
environment:
22+
name: github-pages
23+
url: ${{ steps.deployment.outputs.page_url }}
24+
steps:
25+
- name: Deploy to GitHub Pages
26+
id: deployment
27+
uses: actions/deploy-pages@v4

astro.config.mjs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
// @ts-check
22
import { defineConfig } from 'astro/config';
3-
import mdx from '@astrojs/mdx';
4-
import sitemap from '@astrojs/sitemap';
53

64
// https://astro.build/config
75
export default defineConfig({
8-
site: 'https://example.com',
9-
integrations: [mdx(), sitemap()],
6+
site: 'https://pwnfuzz.github.io',
107
});

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"dev": "astro dev",
77
"build": "astro build",
88
"preview": "astro preview",
9+
"deploy": "astro build && npx gh-pages -d dist",
910
"astro": "astro"
1011
},
1112
"dependencies": {

public/img/CrushFTP/Untitled.png

149 KB

public/img/CrushFTP/Untitled_1.png

58 KB

public/img/CrushFTP/Untitled_2.png

105 KB

public/img/CrushFTP/Untitled_3.png

43.1 KB

public/img/CrushFTP/Untitled_4.png

97.5 KB

public/img/CrushFTP/Untitled_5.png

171 KB

public/img/CrushFTP/Untitled_6.png

238 KB

0 commit comments

Comments
 (0)