You've already forked gitlab-actions
mirror of
https://github.com/hegerdes/gitlab-actions.git
synced 2025-10-06 05:36:52 +02:00
9 lines
222 B
Bash
Executable File
9 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Installing core tools
|
|
if command -v apk > /dev/null; then
|
|
apk add --no-cache curl jq unzip tar gzip gcompat > /dev/null
|
|
else
|
|
echo "The apk package manager does not exist. Skipping core tool install."
|
|
fi
|