fix: typo
All checks were successful
Blog Deployment / Check-Rebuild (push) Successful in 4s
Blog Deployment / Build (push) Successful in 5s
Blog Deployment / Deploy-Staging (push) Successful in 8s
Blog Deployment / Test-Staging (push) Successful in 2s
Blog Deployment / Merge (push) Successful in 6s
Blog Deployment / Deploy-Production (push) Successful in 9s
Blog Deployment / Test-Production (push) Successful in 3s
Blog Deployment / Clean (push) Successful in 5s

This commit is contained in:
Vezpi 2025-06-05 08:51:55 +00:00
parent 9e532d5d4f
commit 06e32273d2
2 changed files with 1 additions and 8 deletions

View File

@ -194,11 +194,6 @@ jobs:
run:
shell: sh
steps:
# - name: Remove Old Docker Image
# if: needs.Check-Rebuild.outputs.newer_version_available == 'true'
# run: |
# docker image rm vezpi-blog:${{ needs.Check-Rebuild.outputs.current_hugo_version }} --force
- name: Remove Old Docker Image
run: docker image rm {{ needs.Check-Rebuild.outputs.current_docker_image }} --force
run: docker image rm ${{ needs.Check-Rebuild.outputs.current_docker_image }} --force

View File

@ -14,8 +14,6 @@ if [ "$BRANCH" = "preview" ]; then
DRAFTS="--buildDrafts"
fi
#removeme
# Clone repo
echo "- Cloning $REPO_URL (branch: $BRANCH)..."
git clone --depth 1 --recurse-submodules --branch "$BRANCH" "$REPO_URL" "$CLONE_DIR"