Skip to content

Commit

Permalink
ci(meta): Quote meta file variable (#14)
Browse files Browse the repository at this point in the history
Shell will interpret lines separately.
  • Loading branch information
5ouma authored Nov 9, 2024
1 parent e476218 commit 05bdf52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: ./.github/actions/setup-bun-with-cache

- name: 👾 Create a Meta File
run: echo ${{ vars.META_FILE }} >meta.json
run: echo '${{ vars.META_FILE }}' >meta.json

- name: 🛠️ Build
run: bun run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: ./.github/actions/setup-bun-with-cache

- name: 👾 Create a Meta File
run: echo ${{ vars.META_FILE }} >meta.json
run: echo '${{ vars.META_FILE }}' >meta.json

- name: 🛠️ Build
run: bun run build
Expand Down

0 comments on commit 05bdf52

Please sign in to comment.