Skip to content

Commit

Permalink
Move to astro, rework content
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhose committed Sep 19, 2024
1 parent 3aa8f98 commit 3004ff0
Show file tree
Hide file tree
Showing 25 changed files with 8,845 additions and 361 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Deploy to GitHub Pages

on:
push:
branches: [main]
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install, build, and upload site
uses: withastro/action@v2

deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
.DS_Store
.DS_Store
.astro/
node_modules/
dist/
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

10 changes: 0 additions & 10 deletions _config.yml

This file was deleted.

21 changes: 0 additions & 21 deletions _layouts/default.html

This file was deleted.

36 changes: 0 additions & 36 deletions assets/css/style.scss

This file was deleted.

9 changes: 9 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { defineConfig } from "astro/config";

import mdx from "@astrojs/mdx";
import react from "@astrojs/react";

export default defineConfig({
site: "https://areweoidcyet.com",
integrations: [mdx(), react()],
});
287 changes: 0 additions & 287 deletions index.md

This file was deleted.

Loading

0 comments on commit 3004ff0

Please sign in to comment.