Skip to content

Commit

Permalink
docs(headless): fix release of typedoc site (#4765)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexprudhomme authored Dec 5, 2024
1 parent 605156c commit 5e327af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,12 +139,12 @@ jobs:
- name: Read version from package.json
id: read_version
run: |
VERSION=$(jq -r '.version' package/headless/package.json)
VERSION=$(jq -r '.version' packages/headless/package.json)
echo "Extracted version: $VERSION"
echo "version=$VERSION" >> $GITHUB_ENV
- name: Zip documentation folder
run: |
DOCS_DIR="package/headless/docs"
DOCS_DIR="packages/headless/docs"
if [ ! -d "$DOCS_DIR" ]; then
echo "Documentation folder $DOCS_DIR not found."
exit 1
Expand Down

0 comments on commit 5e327af

Please sign in to comment.