another attempt at fixing pipeline
Some checks failed
default / build-and-deploy (push) Failing after 13s

This commit is contained in:
Pavel 2025-03-30 17:23:05 +03:00
parent 1cd7e8ea5e
commit 93eb243167

View file

@ -14,12 +14,37 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Docker
- name: Setup environment
run: |
apt-get update && apt-get install -y docker.io curl
service docker start
echo "Running as user: $(whoami)"
echo "Current filesystem permissions:"
mount | grep -E 'overlay|tmpfs'
if mount | grep -q "/ .*ro"; then
echo "Attempting to remount root filesystem as read-write"
if command -v sudo >/dev/null 2>&1; then
sudo mount -o remount,rw /
else
mount -o remount,rw /
fi
fi
- name: Install and setup Docker
run: |
CMD_PREFIX=""
if command -v sudo >/dev/null 2>&1; then
CMD_PREFIX="sudo"
fi
$CMD_PREFIX apt-get update
$CMD_PREFIX apt-get install -y docker.io curl
$CMD_PREFIX service docker start
timeout 15 sh -c "until docker info; do sleep 1; done"
echo "GITHUB_REPOSITORY_OWNER=${{ github.repository_owner }}" >> $GITHUB_ENV
echo "GITHUB_REPOSITORY_NAME=${{ github.repository_name }}" >> $GITHUB_ENV
- name: Set up Docker buildx
uses: docker/setup-buildx-action@v3
with:
@ -42,5 +67,9 @@ jobs:
- name: Deploy
if: ${{ success() }}
run: |
apk add --no-cache curl
if command -v apt-get >/dev/null 2>&1; then
apt-get install -y curl
elif command -v apk >/dev/null 2>&1; then
apk add --no-cache curl
fi
curl -H "${{ secrets.DEPLOYER_AUTH }}" ${{ secrets.DEPLOYER_URL }}