Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ThakaRashard authored Sep 28, 2024
1 parent daa5c8b commit 37e74ec
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ jobs:
runs-on: ubuntu-latest
name: script/cibuild
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.0
Expand All @@ -16,3 +22,14 @@ jobs:
run: script/bootstrap
- name: test
run: script/cibuild
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 37e74ec

Please sign in to comment.