Skip to content

Commit

Permalink
adding dev spaces tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmadigan committed Mar 14, 2024
1 parent 147264b commit 4e33138
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
pull_request:
branches:
- main
schedule:
# Runs at 00:00 UTC every day
- cron: '0 0 * * *'

permissions:
contents: write
Expand All @@ -32,7 +35,7 @@ jobs:
- run: mkdocs gh-deploy -s --force

build:
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' || github.event_name == 'schedule'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 3 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ markdown_extensions:
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
emoji_index: '!!python/name:material.extensions.emoji.twemoji'
emoji_generator: '!!python/name:material.extensions.emoji.to_svg'
- footnotes
- admonition
- pymdownx.details
Expand Down Expand Up @@ -229,3 +229,4 @@ nav:
- 'Generating Kuadrant RateLimitPolicies': kuadrantctl/doc/generate-kuadrant-rate-limit-policy.md
- 'CI/CD with kuadrantctl & Tekton': kuadrantctl/doc/kuadrantctl-ci-cd.md
- 'Using Apicurio Studio with Kuadrant OAS extensions': kuadrantctl/doc/openapi-apicurio.md
- 'Using OpenShift Dev Spaces with Kuadrant OAS extensions': kuadrantctl/doc/openapi-openshift-dev-spaces.md

0 comments on commit 4e33138

Please sign in to comment.