Skip to content

Commit

Permalink
Fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Wh1isper committed Nov 13, 2023
1 parent b7e01d0 commit 1ca314f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-latest-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push release
id: docker_build_release
name: Build and push
id: docker_build_latest
uses: docker/build-push-action@v4
with:
context: .
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push release
id: docker_build_release
name: Build image
id: docker_build_test
uses: docker/build-push-action@v4
with:
context: .
Expand All @@ -38,4 +38,4 @@ jobs:
platforms: linux/amd64,linux/arm64/v8
file: ./docker/Dockerfile
push: false
tags: ${{ secrets.DOCKERHUB_USERNAME }}/duetector:latest
tags: build
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push image
id: docker_build
name: Build and push
id: docker_build_release
uses: docker/build-push-action@v4
with:
context: .
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM python:3.10.12-slim-bookworm as builder
RUN pip install build twine hatch
COPY . /source
WORKDIR /source
RUN python -m buil
RUN python -m build

FROM dataucon/ubuntu-bcc:${BCC_VERSION}

Expand Down

0 comments on commit 1ca314f

Please sign in to comment.