Skip to content

Commit

Permalink
temp? github pages setup
Browse files Browse the repository at this point in the history
  • Loading branch information
nk-coding committed Nov 17, 2024
1 parent da58d05 commit d894dd3
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/deploy-website.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- main

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

jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Create dist folder (TODO: improve this)"
run: |
mkdir dist
cp index.html dist/index.html
cp logo.svg dist/logo.svg
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit d894dd3

Please sign in to comment.