-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #664 from GriceTurrble/patch-1
Build and deploy via GH actions only (no deploy script)
- Loading branch information
Showing
6 changed files
with
129 additions
and
179 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,72 @@ | ||
name: 'Automatic build' | ||
name: "Build and deploy" | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
paths-ignore: | ||
- .gitignore | ||
- README.md | ||
- LICENSE | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
continuous-delivery: | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow one concurrent deployment | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # for posts's lastmod | ||
fetch-depth: 0 | ||
# submodules: true | ||
# If using the 'assets' git submodule from Chirpy Starter, uncomment above | ||
# (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets) | ||
|
||
- name: Setup Pages | ||
id: pages | ||
uses: actions/configure-pages@v1 | ||
|
||
- name: Setup Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 2.7 | ||
ruby-version: 3 # reads from a '.ruby-version' or '.tools-version' file if 'ruby-version' is omitted | ||
bundler-cache: true | ||
|
||
- name: Deploy | ||
run: bash tools/deploy.sh | ||
- name: Build site | ||
run: bundle exec jekyll b -d "_site${{ steps.pages.outputs.base_path }}" | ||
env: | ||
JEKYLL_ENV: "production" | ||
|
||
- name: Test site | ||
run: | | ||
bundle exec htmlproofer _site --disable-external --check-html --allow_hash_href | ||
|
||
- name: Upload site artifact | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: "_site${{ steps.pages.outputs.base_path }}" | ||
|
||
deploy: | ||
name: "Deploy site" | ||
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 |
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 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,67 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Build and test the site content | ||
# | ||
# Requirement: html-proofer, jekyll | ||
# | ||
# Usage: See help information | ||
|
||
set -eu | ||
|
||
SITE_DIR="_site" | ||
|
||
_config="_config.yml" | ||
|
||
help() { | ||
echo "Build and test the site content" | ||
echo | ||
echo "Usage:" | ||
echo | ||
echo " bash ./tools/test.sh [options]" | ||
echo | ||
echo "Options:" | ||
echo ' -c, --config "<config_a[,config_b[...]]>" Specify config file(s)' | ||
echo " -h, --help Print this information." | ||
} | ||
|
||
main() { | ||
# clean up | ||
if [[ -d $SITE_DIR ]]; then | ||
rm -rf "$SITE_DIR" | ||
fi | ||
|
||
_baseurl="$(grep '^baseurl:' "$_config" | sed "s/.*: *//;s/['\"]//g;s/#.*//")" | ||
|
||
# build | ||
JEKYLL_ENV=production bundle exec jekyll build \ | ||
--destination "$SITE_DIR$_baseurl" \ | ||
--config "$_config" | ||
|
||
# test | ||
bundle exec htmlproofer "$SITE_DIR" \ | ||
--disable-external \ | ||
--check-html \ | ||
--allow_hash_href | ||
} | ||
|
||
while (($#)); do | ||
opt="$1" | ||
case $opt in | ||
-c | --config) | ||
_config="$2" | ||
shift | ||
shift | ||
;; | ||
-h | --help) | ||
help | ||
exit 0 | ||
;; | ||
*) | ||
# unknown option | ||
help | ||
exit 1 | ||
;; | ||
esac | ||
done | ||
|
||
main |