chore(docs-gen): grab the correct path to new docs #9
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
name: Generate docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
generate-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Generate docs | |
uses: ./ | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.DOCS_GEN_GH_TOKEN }} | |
with: | |
jsdoc-input-files: "./components/ ./containers/ ./lib/ ./app/ ./package.json" | |
destination-github-username: "eutiveumsonho" | |
destination-repository-name: "docs" | |
user-name: marcelovicentegc | |
user-email: [email protected] | |
target-branch: main | |
commit-message: "docs: update docs ORIGIN_COMMIT" |