Skip to content

Commit

Permalink
Revert "Allow changes to the makefile to rebuild Docker images"
Browse files Browse the repository at this point in the history
This reverts commit 120e9e2.

Refactoring the `makefile` doesn't need to trigger a rebuild of all images. It was important during a name scheme change, since that was controlled by the `makefile`. Now that the name scheme change has been applied, we no longer need to trigger a build of all images for changes to the `makefile`.
  • Loading branch information
DanRStevens committed Dec 29, 2024
1 parent 3ab41d3 commit a031559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/buildDockerBuildEnv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
id: diff
run: |
set +e
git diff --exit-code --no-patch "origin/${defaultBranch}" dockerBuildEnv/makefile dockerBuildEnv/nas2d-${{ matrix.platform }}.* ; echo "modified=$?" >> $GITHUB_OUTPUT
git diff --exit-code --no-patch "origin/${defaultBranch}" dockerBuildEnv/nas2d-${{ matrix.platform }}.* ; echo "modified=$?" >> $GITHUB_OUTPUT
- name: Docker build
if: ${{ fromJSON(steps.diff.outputs.modified) }}
Expand Down

0 comments on commit a031559

Please sign in to comment.