Skip to content

Commit

Permalink
skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
Mordechai Dror committed Sep 21, 2023
1 parent 277ef03 commit 405a49a
Show file tree
Hide file tree
Showing 20 changed files with 1,210 additions and 234 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI/CD

on:
push:
branches: [ master ]
workflow_dispatch:

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

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: withastro/action@v0

deploy:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/deploy-pages@v1
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ pnpm-debug.log*

# macOS-specific files
.DS_Store

.idea
5 changes: 0 additions & 5 deletions .idea/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions astro.config.mjs

This file was deleted.

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

export default defineConfig({
integrations: [tailwind()]
});
Loading

0 comments on commit 405a49a

Please sign in to comment.