-
Notifications
You must be signed in to change notification settings - Fork 7
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 #32 from osg-htc/master
updating branch
- Loading branch information
Showing
81 changed files
with
3,585 additions
and
128 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,19 @@ | ||
name: Deploy static MkDocs pages | ||
on: | ||
push: | ||
branches: [ master ] | ||
|
||
jobs: | ||
deploy-mkdocs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Deploy MkDocs pages | ||
if: startsWith(github.repository, 'osg-htc/') | ||
uses: docker://squidfunk/mkdocs-material:7.1.0 | ||
with: | ||
args: >- | ||
gh-deploy | ||
--verbose |
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,31 @@ | ||
name: Valdate static MkDocs pages | ||
on: pull_request | ||
|
||
jobs: | ||
validate-mkdocs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build MkDocs pages | ||
uses: docker://squidfunk/mkdocs-material:7.1.0 | ||
timeout-minutes: 1 | ||
with: | ||
args: >- | ||
build | ||
--verbose | ||
--strict | ||
- id: format-github-repo | ||
run: echo "::set-output name=repo-name::${GITHUB_REPOSITORY#*\/}" | ||
|
||
- name: Test links | ||
timeout-minutes: 10 | ||
uses: docker://klakegg/html-proofer:3.16.0 | ||
with: | ||
args: >- | ||
--allow-hash-href | ||
--check-html | ||
--http-status-ignore 302 | ||
--file-ignore ./site/404.html | ||
--url-ignore "https://fonts.gstatic.com,/github.com\/opensciencegrid\/${{ steps.format-github-repo.outputs.repo-name }}\/edit/,/opensciencegrid.org\/${{ steps.format-github-repo.outputs.repo-name }}/" | ||
./site |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
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.