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 5ee5b7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:
--${{ matrix.architecture }} \
--target /data \
--generic ${{ github.sha }}
no-pull: true
no-pull: "true"
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 5ee5b7f

Please sign in to comment.