Refactor build step in deployment workflow to ensure executable permissions for binaries
Some checks failed
/ print-content (push) Failing after 3s

This commit is contained in:
암냥 2026-05-31 14:14:04 +09:00
commit f7348d49b4
No known key found for this signature in database

View file

@ -16,7 +16,7 @@ jobs:
- name: Build - name: Build
run: | run: |
source /etc/bashrc source /etc/bashrc
nix shell nixpkgs#bun --command bash -c 'bun i && bun run build' nix shell nixpkgs#bun --command bash -c 'bun i && chmod +x node_modules/.bin/* && bun run build'
- name: Deploy - name: Deploy
run: | run: |