fix: made default shell sh instead of bash
Some checks failed
CI / build-and-publish (push) Failing after 0s

node:apline doesn't include bash it only has sh so i set the default shell to that
This commit is contained in:
2026-05-12 10:40:31 +03:30
parent e3e5a10ec2
commit b606d5f463

View File

@@ -8,6 +8,10 @@ jobs:
build-and-publish: build-and-publish:
runs-on: node-latest runs-on: node-latest
defaults:
run:
shell: sh
steps: steps:
- name: Install dependencies - name: Install dependencies
run: npm ci --prefer-offline run: npm ci --prefer-offline