Skip to content

Commit

Permalink
Fix docker build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
neoformit committed Dec 17, 2024
1 parent 614848e commit 4ff59be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
run: |
if git diff --name-only "${{ github.event.workflow_run.head_branch }}" | grep -q -e 'Dockerfile' -e 'requirements.txt'; then
echo "Dockerfile or requirements.txt changed"
echo "::set-output name=updated::true"
echo echo "updated=true" >> $GITHUB_OUTPUT
else
echo "Dockerfile or requirements.txt not changed"
echo "::set-output name=updated::false"
echo echo "updated=false" >> $GITHUB_OUTPUT
fi
- name: Set up Docker Buildx
Expand Down
2 changes: 2 additions & 0 deletions ansible/roles/galaxy_labs_engine/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
ansible.builtin.docker_image:
name: "{{ labs_engine_docker_image }}"
source: pull
force_source: yes # Ensures it re-checks the remote registry
state: present
tags: update

- name: clone git repository for galaxy-labs-engine
Expand Down

0 comments on commit 4ff59be

Please sign in to comment.