Skip to content

Commit

Permalink
mf
Browse files Browse the repository at this point in the history
  • Loading branch information
mam10eks committed Feb 11, 2024
1 parent a786f3d commit e160aa8
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './static/dist'
path: './static'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
build-ui-docker:
docker run --rm -v ${PWD}/pupil-submission-page:/app -v ${PWD}/static/dist/:/dist -w /app --entrypoint vite mam10eks/github-page-tutorial:0.0.2 build
mkdir -p ${PWD}/static/dist
docker run --rm -v ${PWD}/pupil-submission-page:/app -v ${PWD}/static:/dist -w /app --entrypoint vite mam10eks/github-page-tutorial:0.0.2 build
cp -r ${PWD}/static/assets-public ${PWD}/static/dist/assets-public
cp -r ${PWD}/static/chunks ${PWD}/static/dist/chunks
cp -r ${PWD}/static/entries ${PWD}/static/dist/entries
cp -r ${PWD}/static/favicon.ico ${PWD}/static/dist/favicon.ico
16 changes: 16 additions & 0 deletions pupil-submission-page/src/components/Stepper_2.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
<template>

<v-card>
<template v-slot:title>
Klasse:
</template>

<template v-slot:subtitle>
Bildbeispiele hinzuf&uuml;gen:
</template>

<template v-slot:text>
This is content
</template>
</v-card>


<v-card flat>
<v-container class="ml-4 mr-4">
<ul>
Expand Down

0 comments on commit e160aa8

Please sign in to comment.