diff --git a/.github/workflows/dev.yaml b/.github/workflows/dev.yaml index f1cc53b..37d8dc1 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 @@ -35,8 +35,10 @@ jobs: runs-on: ubuntu-latest steps: - name: GitHub output + env: + OUTPUT: ${{ needs.changed-files.outputs.modified_files }} run: | - echo ${GITHUB_OUTPUT} + echo "$OUTPUT" build-deploy-api: if: contains(needs.changed-files.outputs.modified_files, 'api') diff --git a/app/package.json b/app/package.json index 44ce70f..7706e6c 100644 --- a/app/package.json +++ b/app/package.json @@ -1,7 +1,7 @@ { "name": "@noahspan/flying-client", "private": true, - "version": "0.1.4", + "version": "0.1.5", "type": "module", "scripts": { "dev": "vite",