-
-
Notifications
You must be signed in to change notification settings - Fork 2
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 #28 from oddbird/auto-docs
Automatically publish oddleventy docs
- Loading branch information
Showing
24 changed files
with
62 additions
and
8,522 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,54 @@ | ||
name: Publish documentation | ||
on: | ||
release: # Run when stable releases are published | ||
types: [released] | ||
workflow_dispatch: # Run on-demand | ||
inputs: | ||
ref: | ||
description: Git ref to build docs from | ||
required: true | ||
default: main | ||
type: string | ||
|
||
jobs: | ||
push-branch: | ||
name: Build & push docs | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
steps: | ||
- name: Check out from release | ||
if: github.event_name == 'release' | ||
uses: actions/checkout@v3 | ||
- name: Check out from manual input | ||
if: github.event_name == 'workflow_dispatch' | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ inputs.ref }} | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 'lts/*' | ||
cache: yarn | ||
- run: yarn install | ||
- run: yarn build-docs | ||
- name: Clone docs branch | ||
uses: actions/checkout@v3 | ||
with: | ||
path: docs-branch | ||
ref: oddleventy-docs | ||
- name: Commit & push to docs branch | ||
run: | | ||
SHA=$(git rev-parse HEAD) | ||
cd docs-branch | ||
rm -rf cascading-colors/docs | ||
mkdir -p cascading-colors/docs | ||
cp -r ${{ github.workspace }}/docs/ cascading-colors/ | ||
git config user.name github-actions | ||
git config user.email github-actions@github.com | ||
git add -A . | ||
git commit --allow-empty \ | ||
-m "Update from https://github.com/${{ github.repository }}/commit/$SHA" \ | ||
-m "Full log: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||
git push origin oddleventy-docs |
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 |
---|---|---|
|
@@ -2,6 +2,9 @@ | |
demo/js/ | ||
demo/css/ | ||
|
||
# Docs | ||
docs/ | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
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.