This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
BuildingTestSite #137
Workflow file for this run
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
name: PR-Build | |
run-name: BuildingTestSite | |
on: [pull_request] | |
jobs: | |
buildsite: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Build Jekyll for GitHub Pages | |
uses: actions/[email protected] | |
with: | |
# Directory where the source files reside. | |
source: ./ # optional, default is ./ | |
# Output directory of the build. Although it can be nested inside the source, it cannot be the same as the source directory. | |
destination: ./_site # optional, default is ./_site | |
# Publishes posts with a future date. When set to true, the build is made with the --future option which overrides the future option that may be set in a Jekyll configuration file. | |
future: true# optional | |
# The SHA-1 of the git commit for which the build is running. Default to GITHUB_SHA. | |
build_revision: ${{ github.sha }}# optional, default is ${{ github.sha }} | |
# Verbose output | |
verbose: true# optional, default is true | |
# GitHub token | |
token: ${{ github.token }} # default is ${{ github.token }} |