Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,8 @@ jobs:
name: Push ubuntu-24.04-noble-amd64-valgrind
needs: test-valgrind
runs-on: ubuntu-latest
if: "github.event_name == 'push'
&& github.ref == 'refs/heads/main'"
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
Expand All @@ -231,9 +233,7 @@ jobs:
docker images

- name: Push image
if: "steps.build.outputs.logged_in == 'true'
&& github.event_name == 'push'
&& github.ref == 'refs/heads/main'"
if: "steps.build.outputs.logged_in == 'true'"
run: make push-ubuntu-24.04-noble-amd64-valgrind BRANCH=main
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
Expand Down
Loading