Skip to content

Commit

Permalink
Make sure builder image is pulled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
agners committed Aug 14, 2024
1 parent 73d9da5 commit 7f3fef2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
no-pull:
description: "Do not pull the latest version of builder (for testing)"
required: false
default: false
default: "false"
runs:
using: "composite"
steps:
Expand All @@ -27,7 +27,7 @@ runs:
echo "version=${input}" >> "$GITHUB_OUTPUT"
- shell: bash
if: ${{ inputs.no-pull == true }}
if: ${{ inputs.no-pull == "false" }}
run: |
docker pull ghcr.io/home-assistant/amd64-builder:${{ steps.version.outputs.version }}
cosign verify \
Expand Down

0 comments on commit 7f3fef2

Please sign in to comment.