Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
erikaheidi committed Jan 15, 2024
1 parent 09a4c6c commit f55a44d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/autodocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:

env:
AUTODOCS_OUTPUT: "${{ github.workspace }}"
AUTODOCS_OUTPUT: "${{ github.workspace }}/output"
AUTODOCS_CACHE: "${{ github.workspace }}/storage/cache"
AUTODOCS_TEMPLATES: "${{ github.workspace }}/storage/templates"
jobs:
Expand All @@ -28,6 +28,10 @@ jobs:
- name: Install dependencies
run: composer install --prefer-dist --no-progress

- name: Set up output dir
run: |
mkdir -m 777 -p "${{ env.AUTODOCS_OUTPUT }}"
# Build Docs
- name: Run Autodocs
run: ./autodocs build
Expand Down

0 comments on commit f55a44d

Please sign in to comment.