Skip to content

Commit

Permalink
fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
dafeliton committed Dec 29, 2024
1 parent d85116a commit a694103
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ on:
prepull_images:
description: "Prepull images prior to build"
required: false
default: "false"
type: boolean
default: false

jobs:
start-runner:
Expand Down Expand Up @@ -69,10 +70,11 @@ jobs:

- name: Setup ENV vars
run: |
if [[ "${{ github.event.inputs.prepull_images || 'false' }}" == "true" ]]; then
if [[ "${{ github.event.inputs.prepull_images }}" == "true" ]]; then
echo "SKIP_PREPULL=true" >> $GITHUB_ENV
else
echo "SKIP_PREPULL=false" >> $GITHUB_ENV
fi
- name: Docker/ENV cleanup Cleanup
run: |
Expand Down

0 comments on commit a694103

Please sign in to comment.