update action
This commit is contained in:
@@ -13,6 +13,15 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
- name: Install Docker
|
||||||
|
run: |
|
||||||
|
echo "Checking docker installation"
|
||||||
|
if command -v docker &> /dev/null; then
|
||||||
|
echo "Docker installation found"
|
||||||
|
else
|
||||||
|
echo "Docker installation not found. Docker will be installed"
|
||||||
|
curl -fsSL https://get.docker.com | sh
|
||||||
|
fi
|
||||||
- name: Install Fetch
|
- name: Install Fetch
|
||||||
run: |
|
run: |
|
||||||
echo "Installing fetch"
|
echo "Installing fetch"
|
||||||
|
|||||||
Reference in New Issue
Block a user