From 2a32ea5cf7412080e0d373b00d3beaa4a694b58f Mon Sep 17 00:00:00 2001 From: Ranadeep Biswas Date: Thu, 10 Oct 2024 12:50:32 +0200 Subject: [PATCH] quotes for strings --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5d3833141..370b4b64d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,14 +71,14 @@ jobs: - name: Compile with Deno from NPM Release run: | deno compile \ - --target ${{ matrix.config.target }} \ - --output quint-${{ matrix.config.suffix }} \ --allow-all \ + --target "${{ matrix.config.target }}" \ + --output "quint-${{ matrix.config.suffix }}" \ "npm:@informalsystems/quint@${{ github.ref_name }}" - name: Generate SHA256 Hash run: | - sha256sum quint-${{ matrix.config.suffix }} > quint-${{ matrix.config.suffix }}.sha256 + sha256sum "quint-${{ matrix.config.suffix }}" > "quint-${{ matrix.config.suffix }}.sha256" - name: Upload Assets to Release env: