Skip to content
This repository has been archived by the owner on Jun 23, 2021. It is now read-only.

Commit

Permalink
Github Actions file for Jekyll build (#22)
Browse files Browse the repository at this point in the history
* Create blank.yml

* Update blank.yml

* Update blank.yml

* Update blank.yml

* Update blank.yml

* Update blank.yml

* Update blank.yml

* Update blank.yml

* Separated out Ruby build

* Separated out check for configuration

* Delete blank.yml

Removing orginal actions draft

* Draft for actions of data files

* data files actions

* Update checkData.yml

* Update checkData.yml

* Updating for education data

* Updating for experience data

* Updating for project data

* Update checkData.yml

* Update checkData.yml

* Delete checkConfig.yml

* Delete checkData.yml
  • Loading branch information
felixfaisal authored Feb 2, 2021
1 parent 6d67111 commit a7c6f45
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/jekyllBuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@


name: Build Jekyll

on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- name: Install dependencies
run: bundle install
- name: Build Jekyll
run: bundle exec jekyll build


0 comments on commit a7c6f45

Please sign in to comment.