Skip to content

Commit

Permalink
Merge pull request #10 from makeopensource/cli-publish
Browse files Browse the repository at this point in the history
ci: fixed actions
  • Loading branch information
RA341 authored Oct 4, 2024
2 parents 00bd3e1 + 236c87e commit cab7379
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 cab7379

Please sign in to comment.