Skip to content

Commit

Permalink
Fix deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
tobifra committed Aug 18, 2024
1 parent bf25f7a commit 2bc7d4d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
cd .vitepress/dist
rsync -avz --delete . $SSH_USERNAME@$SSH_SERVER:$DEPLOY_PATH
- name: Ensure bootstrap/cache directory exists and is writable
run: |
mkdir -p ./api/bootstrap/cache
chmod -R 775 ./api/bootstrap/cache
- name: Install PHP 8.2 and Composer
run: |
sudo add-apt-repository ppa:ondrej/php -y
Expand Down
18 changes: 9 additions & 9 deletions .vitepress/components/BulkOrderForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ export default {
return {
success: false,
form: {
first_name: "Max",
last_name: "Mustermann",
pfadiname: "Frosch",
email: "[email protected]",
delivery_first_name: "Max",
delivery_last_name: "Mustermann",
delivery_street: "Bahnhofstrasse 41B",
delivery_zip: "8000",
delivery_town: "Zürich",
first_name: undefined,
last_name: undefined,
pfadiname: undefined,
email: undefined,
delivery_first_name: undefined,
delivery_last_name: undefined,
delivery_street: undefined,
delivery_zip: undefined,
delivery_town: undefined,
quantity: 20,
},
options: [
Expand Down

0 comments on commit 2bc7d4d

Please sign in to comment.