diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7d9647988c03a..7db5429ce043e 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,5 +12,9 @@ ] } }, - "forwardPorts": [] + "forwardPorts": [], + "mounts": [ + "source=${localEnv:USERPROFILE}/.ssh,target=/root/.ssh,type=bind,consistency=cached" + ], + "postCreateCommand": "chmod 600 /root/.ssh/*" } \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cb9ada06c77c9..6e9be57db20c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -104,7 +104,7 @@ jobs: - name: Zip artifacts run: | for dir in artifacts/*; do - zip -j -r "${dir##*/}.zip" "$dir" + zip -j -r "artifacts/${dir##*/}.zip" "$dir" done - name: Create release