Skip to content

Commit

Permalink
Try to add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
redfast00 committed May 3, 2024
1 parent 43449fa commit 48ff9f3
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Github Pages

on: [push, pull_request]

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

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5

- name: Checkout
uses: actions/checkout@v4

- name: Build site
run: ./generate.sh

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: output/

deploy:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 48ff9f3

Please sign in to comment.