From f3ca614728b187dd8e24fff24b5232b1dc9b854a Mon Sep 17 00:00:00 2001 From: Pascal Syma Date: Sun, 30 Mar 2025 04:06:56 +0200 Subject: [PATCH] Fix pipeline --- .github/workflows/deploys.yml | 2 +- bun.lockb | Bin 99423 -> 99423 bytes src/components/card.vue | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 bun.lockb diff --git a/.github/workflows/deploys.yml b/.github/workflows/deploys.yml index ae02648..e5795ab 100644 --- a/.github/workflows/deploys.yml +++ b/.github/workflows/deploys.yml @@ -32,7 +32,7 @@ jobs: node-version: 22 - run: npm install --frozen-lockfile - name: Build project - run: npm run build + run: npm run build-only - name: Setup Pages uses: actions/configure-pages@v4 - name: Upload artifact diff --git a/bun.lockb b/bun.lockb old mode 100644 new mode 100755 index 17349b9a63cca6b8cd7c3ca21a3aed9701d12281..912ad1625afc2686458822c43f058698fc52bcb6 GIT binary patch delta 39 pcmccL!FIoctziq}RVEI`I1@bsJwx;9j{J`>13?@WvtjR5;X3zz@^ delta 53 zcmccL!FIoctziq}RVFzm1}LZm(%cLT4PHM^=CHnB9Kr;Wnf_jbQFJ>8Gh=uo0E0;l A&;S4c diff --git a/src/components/card.vue b/src/components/card.vue index a5c87ec..198df38 100644 --- a/src/components/card.vue +++ b/src/components/card.vue @@ -3,7 +3,7 @@ const card = defineModel<{ title: string color: string name: string -}>() +}>({ required: true })