Skip to content

Commit

Permalink
2024-06-20 09:49 - updates
Browse files Browse the repository at this point in the history
  • Loading branch information
saxix committed Jun 20, 2024
1 parent 4d55e95 commit a22f5a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/actions/docker_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ inputs:
dryrun:
description: 'Dryrun build'
required: false
default: false
default: 'false'


defaults:
Expand Down Expand Up @@ -81,7 +81,6 @@ runs:
uses: ./.github/actions/checksum

- shell: bash
id: env
run: |
build_date=$(date +"%Y-%m-%d %H:%M")
echo "BUILD_DATE=$build_date" >> $GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
id: build
uses: ./.github/actions/docker_build
with:
dryrun: ${{ env.ACT }}
dryrun: ${{ env.ACT || 'false' }}
rebuild: ${{ contains(github.event.head_commit.message, 'ci:build') }}
image: ${{ vars.DOCKER_IMAGE }}
target: 'python_dev_deps'
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
id: build
uses: ./.github/actions/docker_build
with:
dryrun: ${{ env.ACT }}
dryrun: ${{ env.ACT || 'false' }}
rebuild: ${{ contains(github.event.head_commit.message, 'ci:build') }}
image: ${{ vars.DOCKER_IMAGE }}
target: 'dist'
Expand Down

0 comments on commit a22f5a3

Please sign in to comment.