Add Git installation step to Alpine Linux build workflow
Some checks failed
Build Alpine Package / build-alpine (push) Failing after 57s
Build Debian Package / build-debian (push) Successful in 1m36s

- Install Git in the Alpine Linux container
- Ensure Git is available for repository checkout
- Resolve potential Git-related issues in the workflow
This commit is contained in:
2025-02-01 06:33:17 +00:00
parent ebed40b93d
commit b01f0d9807

View File

@@ -17,6 +17,10 @@ jobs:
container: node:current-alpine
steps:
- name: Install Git
run: |
apk add --no-cache git
- name: Checkout repository
uses: actions/checkout@v3
with: