Skip to content

Commit 5e3e172

Browse files
Merge pull request devonfw#278 from tobka777/devonfw/architectures/82-rename-architecture-browser
rename architecture browser
2 parents d179532 + 84a4655 commit 5e3e172

5 files changed

Lines changed: 26 additions & 25 deletions

File tree

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

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -48,32 +48,32 @@ jobs:
4848
4949
- name: Solutions from Stack repositories
5050
run: |
51-
cd architectures/scripts
51+
cd solutions/scripts
5252
npm install
5353
node copySolutionsFromStack.js ../../devonfw-guide
5454
cd ../../
5555
56-
- name: Copy pom files for architectures
56+
- name: Copy pom files for solutions
5757
run: |
58-
chmod +x architectures/scripts/copyPomFiles.sh
59-
architectures/scripts/copyPomFiles.sh
58+
chmod +x solutions/scripts/copyPomFiles.sh
59+
solutions/scripts/copyPomFiles.sh
6060
6161
- name: Copy pom files for tutorials
6262
run: |
6363
chmod +x wiki-tutorials/scripts/copyPomFiles.sh
6464
wiki-tutorials/scripts/copyPomFiles.sh
6565
66-
- name: npm install for architectures
66+
- name: npm install for solutions
6767
run: |
68-
cd architectures/scripts
68+
cd solutions/scripts
6969
npm install
7070
cd ../../
7171
72-
- name: Compile sass for architectures
72+
- name: Compile sass for solutions
7373
uses: gha-utilities/sass-build@v0.4.2
7474
with:
75-
source: architectures/index.scss
76-
destination: architectures/index.css
75+
source: solutions/index.scss
76+
destination: solutions/index.css
7777

7878
- name: Compile sass for tutorials
7979
uses: gha-utilities/sass-build@v0.4.2
@@ -85,8 +85,8 @@ jobs:
8585
# As this gems are not installed this is breaking the build.
8686
- name: Remove files that are breaking the build
8787
run: |
88-
rm architectures/README.md || true
89-
rm architectures/index.scss || true
88+
rm solutions/README.md || true
89+
rm solutions/index.scss || true
9090
rm wiki-tutorials/README.md || true
9191
rm wiki-tutorials/index.scss || true
9292
@@ -129,14 +129,15 @@ jobs:
129129
node highlight-current.js ../target/generated-docs/website
130130
cd ..
131131
132-
- name: Create output for architectures
132+
- name: Create output for solutions
133133
run: |
134-
chmod +x architectures/scripts/createOutput.sh
135-
architectures/scripts/createOutput.sh
134+
chmod +x solutions/scripts/createOutput.sh
135+
solutions/scripts/createOutput.sh
136136
137-
- name: Copy output of architectures
137+
- name: Copy output of solutions
138138
run: |
139-
cp -avr architectures/target/generated-docs/ target/generated-docs/website/pages/architectures/
139+
cp -avr solutions/target/generated-docs/ target/generated-docs/website/pages/solutions/
140+
mv target/generated-docs/website/pages/solutions/solutions target/generated-docs/website/pages/solutions/solution
140141
141142
- name: Create output for tutorials
142143
run: |
@@ -161,7 +162,7 @@ jobs:
161162
run: |
162163
cd search-engine
163164
npm install
164-
node ./converter.js ../target/generated-docs/website/pages/docs/ ../architectures/solutions/ ../target/generated-docs/website/components/header/search-engine
165+
node ./converter.js ../target/generated-docs/website/pages/docs/ ../solutions/solutions/ ../target/generated-docs/website/components/header/search-engine
165166
ls -al ../target/generated-docs/website/components/header/search-engine
166167
cd ../
167168

.github/workflows/dispatch-event.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ jobs:
4343
git merge origin/main
4444
cd ..
4545
git add wiki-tutorials
46-
cd architectures/
46+
cd solutions/
4747
git checkout master
4848
git fetch
4949
git branch
5050
git merge origin/master
5151
cd ..
52-
git add architectures
52+
git add solutions
5353
git commit -m "[DocUpdate]"
5454
git push origin develop

.gitmodules

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
path = devonfw-guide
77
url = https://github.com/devonfw/devonfw-guide.git
88
branch = master
9-
[submodule "architectures"]
10-
path = architectures
11-
url = https://github.com/devonfw/architectures.git
12-
branch = master
139
[submodule "wiki-tutorials"]
1410
path = wiki-tutorials
1511
url = https://github.com/devonfw-tutorials/wiki-tutorials.git
1612
branch = main
13+
[submodule "solutions"]
14+
path = solutions
15+
url = https://github.com/devonfw/solutions
16+
branch = master

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<module>asciidoctor-stylesheet</module>
1717
<module>website</module>
1818
<module>search-engine</module>
19-
<module>architectures</module>
20-
<module>wiki-tutorials</module>
19+
<module>solutions</module>
20+
<module>wiki-tutorials</module>
2121
</modules>
2222

2323
<properties>

0 commit comments

Comments
 (0)