From 2981a29d11c3306b2b7bd39ce83b211af626e1eb Mon Sep 17 00:00:00 2001 From: Noah Spannbauer Date: Sun, 1 Dec 2024 11:44:52 -0600 Subject: [PATCH] api no longer fails when no pilots or logbook entries --- .github/workflows/dev.yaml | 4 ++-- app/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dev.yaml b/.github/workflows/dev.yaml index 37d8dc1..8b007b8 100644 --- a/.github/workflows/dev.yaml +++ b/.github/workflows/dev.yaml @@ -26,7 +26,7 @@ jobs: env: MODIFIED_FILES: ${{ steps.changed-files.outputs.modified_files }} run: | - echo "modified_files=$MODIFIED_FILES" >> "$GITHUB_OUTPUT" + echo "modified_files=${MODIFIED_FILES}" >> "$GITHUB_OUTPUT" github-output: name: git-hub-output @@ -38,7 +38,7 @@ jobs: env: OUTPUT: ${{ needs.changed-files.outputs.modified_files }} run: | - echo "$OUTPUT" + echo '${{ toJSON(needs.changed-files.outputs) }}' build-deploy-api: if: contains(needs.changed-files.outputs.modified_files, 'api') diff --git a/app/package.json b/app/package.json index 7706e6c..fd7525c 100644 --- a/app/package.json +++ b/app/package.json @@ -1,7 +1,7 @@ { "name": "@noahspan/flying-client", "private": true, - "version": "0.1.5", + "version": "0.1.6", "type": "module", "scripts": { "dev": "vite",