Skip to content

Commit

Permalink
ci(web): fix missing registry (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
M4RC02U1F4A4 authored Apr 28, 2024
1 parent 7222154 commit d8bd1b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/web-backend-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
uses: actions/download-artifact@v4

- name: Registry login
run: echo "${{ secrets.GITHUB_TOKEN }}" | podman login -u ${{ github.actor }} --password-stdin
run: echo "${{ secrets.GITHUB_TOKEN }}" | podman login -u ${{ github.actor }} --password-stdin ${{ env.REGISTRY }}

- name: Create and push manifest
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web-frontend-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
uses: actions/download-artifact@v4

- name: Registry login
run: echo "${{ secrets.GITHUB_TOKEN }}" | podman login -u ${{ github.actor }} --password-stdin
run: echo "${{ secrets.GITHUB_TOKEN }}" | podman login -u ${{ github.actor }} --password-stdin ${{ env.REGISTRY }}

- name: Create and push manifest
run: |
Expand Down

0 comments on commit d8bd1b8

Please sign in to comment.