-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e691652
commit 023199c
Showing
54 changed files
with
1,544 additions
and
1,740 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Build and Deploy Blog | ||
|
||
on: | ||
push: | ||
branches: | ||
- main # Trigger the action on push to the 'main' branch (change as needed) | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Step 1: Checkout the repository | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
# Step 2: Set up Ruby environment | ||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.1' # Specify the Ruby version for Jekyll | ||
|
||
# Step 3: Install dependencies | ||
- name: Install dependencies | ||
run: | | ||
gem install bundler | ||
bundle install | ||
# Step 4: Build the Blog | ||
- name: Build Blog | ||
run: bundle exec jekyll build | ||
|
||
# Step 5: Deploy to GitHub Pages | ||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v4 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./_site |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,31 +4,19 @@ title: "Omnia" | |
description: "A blog for all things tech" | ||
logo: 'assets/images/apple-touch-icon.png' | ||
favicon: 'assets/images/favicon.ico' | ||
baseurl: /mediumish-theme-jekyll | ||
google_analytics: 'UA-46278016-1' | ||
disqus: 'demowebsite' | ||
disqus: "omnia-core" | ||
include: ["_pages"] | ||
permalink: /:title/ | ||
|
||
# Authors | ||
authors: | ||
sal: | ||
name: Sal | ||
display_name: Sal | ||
gravatar: e56154546cf4be74e393c62d1ae9f9d4 | ||
email: [email protected] | ||
web: https://www.wowthemes.net | ||
twitter: https://twitter.com/wowthemesnet | ||
description: "Author of Mediumish, a Bootstrap Medium styled template available for WordPress, HTML, Ghost and Jekyll. You are currently previewing Jekyll template demo." | ||
john: | ||
name: John | ||
display_name: John | ||
avatar: 'assets/images/avatar.png' | ||
gravatar: b1cc14991db7a456fcd761680bbc8f81 | ||
email: [email protected] | ||
web: https://www.wowthemes.net | ||
twitter: https://twitter.com/wowthemesnet | ||
description: "This is the author box. Write a short description of the author here. You are currently previewing Mediumish demo, a Jekyll template compatible with Github pages." | ||
kevin: | ||
name: Kevin | ||
display_name: Kevin | ||
gravatar: f1eea0082761fcd8e82ebd8aa6de5410 | ||
email: [email protected] | ||
web: https://omnia-core.github.io | ||
description: "Author of Omnia Blog." | ||
|
||
# Plugins | ||
plugins: | ||
|
@@ -61,11 +49,10 @@ kramdown: | |
line_numbers: true | ||
|
||
# Adsense (change to "enabled" to activate, also your client id and ad slot. Create a new ad unit from your Adsense account to get the slot.) | ||
adsense: "disabled" | ||
adsense-data-ad-client: "ca-pub-3412143450191416" | ||
adsense-data-ad-slot: "1363087678" | ||
adsense: "enabled" | ||
adsense-data-ad-client: "ca-pub-1914240913191564" | ||
|
||
# Lazy Images ("enabled" or "disabled") | ||
lazyimages: "disabled" | ||
|
||
exclude: [changelog.md, LICENSE.txt, README.md, Gemfile, Gemfile.lock] | ||
exclude: [changelog.md, README.md, Gemfile, Gemfile.lock] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<!-- Google tag (gtag.js) --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FSX1QMJC9G"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-FSX1QMJC9G'); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.