Skip to content

Commit

Permalink
fix publish script and devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
kira1928 committed Jun 18, 2024
1 parent bf5a689 commit 17c738e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,9 @@
]
}
},
"forwardPorts": []
"forwardPorts": [],
"mounts": [
"source=${localEnv:USERPROFILE}/.ssh,target=/root/.ssh,type=bind,consistency=cached"
],
"postCreateCommand": "chmod 600 /root/.ssh/*"
}
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 17c738e

Please sign in to comment.