Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Docs deploy to GitHub Pages

defaults:
run:
working-directory: ./docs/sra
working-directory: 'docs/sra'

on:
push:
Expand All @@ -24,7 +24,7 @@ jobs:
with:
node-version: 20
cache: yarn
cache-dependency-path: ./docs/sra/yarn.lock
cache-dependency-path: 'docs/sra/yarn.lock'

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: build
path: 'docs/sra/build'

deploy:
name: Deploy to GitHub Pages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Docs test deployment

defaults:
run:
working-directory: ./docs/sra
working-directory: 'docs/sra'

on:
pull_request:
Expand All @@ -22,7 +22,7 @@ jobs:
with:
node-version: 20
cache: yarn
cache-dependency-path: ./docs/sra/yarn.lock
cache-dependency-path: 'docs/sra/yarn.lock'

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down