Skip to content

Commit c4bb4cc

Browse files
authored
[Fix for #58] Enhance workflow to update repository URLs
Fix for #58 Update build-and-deploy-tutorial.yml to execute the upate-repo-url.sh so that we get the correct edit URL in the generated HTML files.
1 parent 1e030fb commit c4bb4cc

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/build-and-deploy-tutorial.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@ jobs:
6161
npm install @antora/cli @antora/site-generator-default
6262
npm install @antora/lunr-extension @antora/pdf-extension @asciidoctor/tabs
6363
gem install asciidoctor-pdf asciidoctor-kroki asciidoctor-plantuml
64+
65+
# Make update-repo-url.sh executable and run it to update URLs
66+
- name: Make update-repo-url.sh executable
67+
run: chmod +x ./update-repo-url.sh
68+
69+
- name: Update repository URLs in configuration files
70+
run: ./update-repo-url.sh
6471

6572
# Generate the documentation site to validate it builds correctly
6673
- name: Validate Site Generation

0 commit comments

Comments
 (0)