Skip to content

Commit

Permalink
fix workflow action
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad-Dwairi committed Aug 6, 2024
1 parent f0a24ea commit 789a52c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/generate-docs-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ jobs:
run: git checkout main

- name: Generate New Release Reference Docs
run: mvn -f code dokka:dokka -Ddokka-old-versions.location=${{ runner.temp }}/older -Ddokka-assets.location=realpath assets
run: |
assets_absolute_path=$(realpath assets)
mvn -f code dokka:dokka -Ddokka-old-versions.location=${{ runner.temp }}/older -Ddokka-assets.location=$assets_absolute_path
- name: Extract and Store Newly Generated Docs Version Number
run: echo "NEW_DOCS_VERSION=$(jq -r '.version' code/target/dokka/version.json)" >> $GITHUB_ENV
Expand Down

0 comments on commit 789a52c

Please sign in to comment.