Skip to content

Commit

Permalink
fix: remove debug build and push
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Jun 27, 2024
1 parent 9d63f6d commit af49e20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
docker:
name: Build and run for sanity check leader and worker docker images
name: Build and run leader and worker docker images for regression check
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -24,12 +24,12 @@ jobs:
- name: Run leader docker container
run: |
docker run leader:${{ github.ref_name }} --help
docker run --rm leader:${{ github.ref_name }} --help
- name: Build worker docker container
run: |
docker build --progress plain -t worker:${{ github.ref_name }} -f worker.Dockerfile .
- name: Run worker docker container
run: |
docker run worker:${{ github.ref_name }} --help
docker run --rm worker:${{ github.ref_name }} --help
3 changes: 0 additions & 3 deletions .github/workflows/docker_build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ on:
branches: [develop, main]
release:
types: [created]
# TODO to debug build and push, remove before merge
pull_request:
branches: [develop]

env:
REGISTRY: ghcr.io
Expand Down

0 comments on commit af49e20

Please sign in to comment.