Skip to content

Commit

Permalink
Merge pull request #1 from StyraInc/docs-updater
Browse files Browse the repository at this point in the history
Add docs updater workflow
  • Loading branch information
charlieegan3 authored Oct 30, 2024
2 parents 42dd044 + cf64dd3 commit 1798d98
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/update-docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# this workflow is used to update the content at docs.styra.com
# when it changes in this repo.
name: Update Docs

on:
push:
branches:
- main
workflow_dispatch:

jobs:
update-docs:
name: Update Docs
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0

- name: Save version
run: |
mkdir -p versions
echo "${{ github.sha }}" > versions/lib.jwt
- name: Update docs
uses: leigholiver/commit-with-deploy-key@9562ffd1c0965c6d4f264e2555a569bd33ac7d05
with:
source: versions
destination_folder: imported/versions
destination_repo: StyraInc/docs
deploy_key: ${{ secrets.STYRA_DOCS_DEPLOY_KEY }}

0 comments on commit 1798d98

Please sign in to comment.