Skip to content

Commit

Permalink
ci: fix ssh key too open
Browse files Browse the repository at this point in the history
  • Loading branch information
kamontat committed Aug 31, 2024
1 parent 83e0eed commit 0ecbab3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ jobs:
run: |
printf '%s' "${{ secrets.BOT_SSH_PUB_BASE64 }}" |
base64 -d >"/tmp/id_ed25519.pub"
chmod 400 "/tmp/id_ed25519.pub"
printf '%s' "${{ secrets.BOT_SSH_KEY_BASE64 }}" |
base64 -d >"/tmp/id_ed25519"
chmod 400 "/tmp/id_ed25519"
- name: Set up github cli
run: gh auth setup-git
env:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"start": "nx run-many --batch --targets lint build test",
"start:ci": "nx affected --batch -- --targets lint build test --output-style static",
"release": "nx release --dry-run",
"release:ci": "nx release --verbose"
"release:ci": "nx release"
},
"devDependencies": {
"@commitlint/cli": "19.4.1",
Expand Down

0 comments on commit 0ecbab3

Please sign in to comment.