Skip to content

Commit

Permalink
Add basic jekyll template
Browse files Browse the repository at this point in the history
  • Loading branch information
kmruiz committed Jan 4, 2023
1 parent d137523 commit c22b9d6
Show file tree
Hide file tree
Showing 11 changed files with 1,015 additions and 40 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/release-doc-page.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
on:
push:
branches: ["main"]

workflow_dispatch:

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

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

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./docs
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v1

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@v1
45 changes: 5 additions & 40 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,40 +1,5 @@
.pottery
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/

### IntelliJ IDEA ###
/.idea
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr

### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
_site
.sass-cache
.jekyll-cache
.jekyll-metadata
vendor
Loading

0 comments on commit c22b9d6

Please sign in to comment.