update readme action

This commit is contained in:
2026-02-12 09:15:56 +01:00
parent 215f7988b5
commit aea9cf793f

View File

@@ -25,9 +25,14 @@ jobs:
- name: Install Fetch - name: Install Fetch
run: | run: |
echo "Installing fetch" echo "Installing fetch"
apt-get install -y curl if ! command -v node &> /dev/null; then
curl -fsSL https://deb.nodesource.com/setup_24.x | bash apt-get install -y curl
npm install node-fetch curl -fsSL https://deb.nodesource.com/setup_24.x | bash
fi
package='node-fetch'
if [ `npm list -g | grep -c $package` -eq 0 ]; then
npm install $package --no-shrinkwrap
fi
- name: Login to DockerHub container registry - name: Login to DockerHub container registry
uses: https://github.com/docker/login-action@v3 uses: https://github.com/docker/login-action@v3
with: with: