Update .github/workflows/pages-deploy.yml
This commit is contained in:
parent
effb91dff2
commit
c0d583aa9e
1 changed files with 30 additions and 30 deletions
60
.github/workflows/pages-deploy.yml
vendored
60
.github/workflows/pages-deploy.yml
vendored
|
@ -24,42 +24,42 @@ concurrency:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: docker
|
||||||
|
|
||||||
steps:
|
# steps:
|
||||||
- name: Checkout
|
# - name: Checkout
|
||||||
uses: actions/checkout@v4
|
# uses: actions/checkout@v4
|
||||||
with:
|
# with:
|
||||||
fetch-depth: 0
|
# fetch-depth: 0
|
||||||
# submodules: true
|
# # submodules: true
|
||||||
# If using the 'assets' git submodule from Chirpy Starter, uncomment above
|
# # If using the 'assets' git submodule from Chirpy Starter, uncomment above
|
||||||
# (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets)
|
# # (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets)
|
||||||
|
|
||||||
- name: Setup Pages
|
# - name: Setup Pages
|
||||||
id: pages
|
# id: pages
|
||||||
uses: actions/configure-pages@v4
|
# uses: actions/configure-pages@v4
|
||||||
|
|
||||||
- name: Setup Ruby
|
# - name: Setup Ruby
|
||||||
uses: ruby/setup-ruby@v1
|
# uses: ruby/setup-ruby@v1
|
||||||
with:
|
# with:
|
||||||
ruby-version: 3.2
|
# ruby-version: 3.2
|
||||||
bundler-cache: true
|
# bundler-cache: true
|
||||||
|
|
||||||
- name: Build site
|
# - name: Build site
|
||||||
run: bundle exec jekyll b -d "_site${{ steps.pages.outputs.base_path }}"
|
# run: bundle exec jekyll b -d "_site${{ steps.pages.outputs.base_path }}"
|
||||||
env:
|
# env:
|
||||||
JEKYLL_ENV: "production"
|
# JEKYLL_ENV: "production"
|
||||||
|
|
||||||
- name: Test site
|
# - name: Test site
|
||||||
run: |
|
# run: |
|
||||||
bundle exec htmlproofer _site \
|
# bundle exec htmlproofer _site \
|
||||||
\-\-disable-external=true \
|
# \-\-disable-external=true \
|
||||||
\-\-ignore-urls "/^http:\/\/127.0.0.1/,/^http:\/\/0.0.0.0/,/^http:\/\/localhost/"
|
# \-\-ignore-urls "/^http:\/\/127.0.0.1/,/^http:\/\/0.0.0.0/,/^http:\/\/localhost/"
|
||||||
|
|
||||||
- name: Upload site artifact
|
# - name: Upload site artifact
|
||||||
uses: actions/upload-pages-artifact@v3
|
# uses: actions/upload-pages-artifact@v3
|
||||||
with:
|
# with:
|
||||||
path: "_site${{ steps.pages.outputs.base_path }}"
|
# path: "_site${{ steps.pages.outputs.base_path }}"
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Reference in a new issue