Skip to content

Commit

Permalink
Merge pull request #1 from tatumio/test
Browse files Browse the repository at this point in the history
Added README action
  • Loading branch information
Hathoriel authored Apr 3, 2024
2 parents b2a189a + a87759a commit f33c05e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Sync `documentation` directory to ReadMe

# Run workflow for every push to the `main` branch
on:
push:
branches:
- master

jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout this repo
uses: actions/checkout@v3

# Run GitHub Action to sync docs in `documentation` directory
- name: GitHub Action
# We recommend specifying a fixed version, i.e. @v8
# Docs: https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions#example-using-versioned-actions
uses: readmeio/rdme@v8
with:
rdme: docs ./documentation --key=${{ secrets.README_API_KEY }} --version=2.0

0 comments on commit f33c05e

Please sign in to comment.