Skip to content

Commit

Permalink
Change dir to access Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
efrecon committed Feb 1, 2023
1 parent f0db244 commit 2604de7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dockerimages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
env:
DOCKER_REPO: ghcr.io/yanzinetworks/toolbox
SOURCE_COMMIT: ${{ github.sha }}
run: ./toolbox/hooks/build
run: cd ./toolbox && ./hooks/build
-
name: Push GHCR images
env:
DOCKER_REPO: ghcr.io/yanzinetworks/toolbox
SOURCE_COMMIT: ${{ github.sha }}
run: ./toolbox/hooks/push
run: cd ./toolbox && ./hooks/push
-
name: Login to Docker Hub Registry
uses: docker/login-action@v2
Expand All @@ -47,10 +47,10 @@ jobs:
env:
DOCKER_REPO: docker.io/yanzinetworks/toolbox
SOURCE_COMMIT: ${{ github.sha }}
run: ./toolbox/hooks/build
run: cd ./toolbox && ./hooks/build
-
name: Push Docker Hub images
env:
DOCKER_REPO: docker.io/yanzinetworks/toolbox
SOURCE_COMMIT: ${{ github.sha }}
run: ./toolbox/hooks/push
run: cd ./toolbox && ./hooks/push

0 comments on commit 2604de7

Please sign in to comment.