Skip to content

Commit d489f9f

Browse files
authored
Merge pull request #24 from SAP-samples/unit-structure
Unit Structure
2 parents 30f2c47 + 1fa07f9 commit d489f9f

File tree

104 files changed

+29
-29
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+29
-29
lines changed

.github/workflows/on-commit.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ jobs:
1010
- uses: actions/setup-node@v4
1111
with:
1212
cache: 'npm'
13-
cache-dependency-path: 'ex0/package-lock.json'
13+
cache-dependency-path: 'u1/ex0/package-lock.json'
1414

1515
- name: Install and build exercises
1616
run: |
1717
mkdir gh-pages
18-
zip -r gh-pages/mdc.tutorial.zip ex0 -x 'readme.md' -x '*.png'
18+
zip -r gh-pages/mdc.tutorial.zip u1/ex0 -x 'readme.md' -x '*.png'
1919
20-
for dir in ./ex*/; do
21-
mkdir -p gh-pages/"$dir"
20+
for dir in ./u1/ex*/; do
21+
mkdir -p gh-pages/u1/"$dir"
2222
cd "$dir"
2323
npm install
2424
npm run build
25-
mv dist ../gh-pages/"$dir"
25+
mv dist ../gh-pages/u1/"$dir"
2626
cd ../
2727
done
2828
- name: Deploy 🚀

README.md

Lines changed: 6 additions & 6 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

ex0/readme.md renamed to u1/ex0/readme.md

Lines changed: 4 additions & 4 deletions
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)