add curl for test
Some checks failed
Deploy Portfolio / deploy (push) Failing after 1m34s

This commit is contained in:
2025-12-15 19:35:07 -05:00
parent c07a20afa0
commit b559efc8df

View File

@@ -34,6 +34,18 @@ jobs:
- name: Clean up old images - name: Clean up old images
run: docker image prune -f run: docker image prune -f
- name: Install curl
run: |
if ! command -v curl >/dev/null 2>&1; then
if command -v apt >/dev/null 2>&1; then
sudo apt update && sudo apt install -y curl
elif command -v apk >/dev/null 2>&1; then
sudo apk add curl
elif command -v yum >/dev/null 2>&1; then
sudo yum install -y curl
fi
fi
- name: Set Discord mention - name: Set Discord mention
id: discord id: discord
run: | run: |