Skip to content

Commit

Permalink
ci: fixed actions
Browse files Browse the repository at this point in the history
  • Loading branch information
RA341 committed Oct 4, 2024
1 parent 6d01211 commit 236c87e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: build hydra image
working-directory: .example/hydra
run: docker build . -t ghcr.io/makeopensource/hydra:beta
run: docker build ../../ -f ./Dockerfile -t ghcr.io/makeopensource/hydra:beta

- name: push hydra
run: docker push ghcr.io/makeopensource/hydra:beta
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ jobs:

- name: build hydra image latest
working-directory: .example/hydra
run: docker build . -t ghcr.io/makeopensource/hydra:latest
run: docker build ../../ -f ./Dockerfile -t ghcr.io/makeopensource/hydra:latest

- name: push hydra latest
run: docker push ghcr.io/makeopensource/hydra:latest

- name: build hydra image versioned
working-directory: .example/hydra
run: docker build . -t ghcr.io/makeopensource/hydra:${{ steps.tagName.outputs.tag }}
run: docker build ../../ -f ./Dockerfile -t ghcr.io/makeopensource/hydra:${{ steps.tagName.outputs.tag }}

- name: push hydra versioned
run: docker push ghcr.io/makeopensource/hydra:${{ steps.tagName.outputs.tag }}
Expand Down

0 comments on commit 236c87e

Please sign in to comment.