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",