-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
81 changed files
with
3,324 additions
and
2,732 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,22 @@ | ||
# This GitHub Actions workflow syncs Markdown files to the Bloomreach production documentation site. | ||
name: ReadMe Production GitHub Action 🦉 | ||
|
||
on: | ||
push: | ||
branches: | ||
# This workflow will run every time you push code to the following branch: `main` | ||
# Check out GitHub's docs for more info on configuring this: | ||
# https://docs.github.com/actions/using-workflows/events-that-trigger-workflows | ||
- main | ||
|
||
jobs: | ||
rdme-docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repo 📚 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run `docs` command 🚀 | ||
uses: readmeio/rdme@v8 | ||
with: | ||
rdme: docs Documentation --key=${{ secrets.README_PRODUCTION_API_KEY }} --version=2 |
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,22 @@ | ||
# This GitHub Actions workflow syncs Markdown files to the Bloomreach sandbox documentation site. | ||
name: ReadMe Sandbox GitHub Action 🦉 | ||
|
||
on: | ||
push: | ||
branches: | ||
# This workflow will run every time you push code to the following branch: `develop` | ||
# Check out GitHub's docs for more info on configuring this: | ||
# https://docs.github.com/actions/using-workflows/events-that-trigger-workflows | ||
- develop | ||
|
||
jobs: | ||
rdme-docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repo 📚 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run `docs` command 🚀 | ||
uses: readmeio/rdme@v8 | ||
with: | ||
rdme: docs Documentation --key=${{ secrets.README_SANDBOX_API_KEY }} --version=2 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.