diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 32d67d5..8a08347 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: shell: bash run: | echo "using version tag ${GITHUB_REF:10}" - echo ::set-output name=version::"${GITHUB_REF:10}" + echo ::save-state name=version::"${GITHUB_REF:10}" - name: Create Release id: create_release @@ -63,7 +63,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn config get cacheFolder)" + run: echo "::save-state name=dir::$(yarn config get cacheFolder)" - name: Yarn cache uses: actions/cache@v2 diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 27fb444..df076a0 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -22,7 +22,7 @@ "fs": { "all": true, "scope": [ - "$HOME/**" + "**" ] } },