Delete .valeignore #53
This file contains hidden or 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
| name: Sync Documentation to Wiki | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| sync-wiki: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v2 | |
| - name: Process markdown files | |
| run: npx https://github.com/The-Nice-One/rail-yard.git preprocess -i ./src -o ./build | |
| - name: Sync docs to wiki | |
| uses: newrelic/wiki-sync-action@main | |
| with: | |
| branch: main | |
| source: build | |
| destination: wiki | |
| token: ${{ secrets.TOKEN }} |