Skip to content

Commit

Permalink
.github: Fix container registry login
Browse files Browse the repository at this point in the history
We recently switched to using podman instead of buildah and missed to
update this.
  • Loading branch information
brancz committed Mar 2, 2022
1 parent 3fd3aa2 commit 9fc6417
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/container.yml
Expand Up @@ -33,8 +33,8 @@ jobs:
- name: Login to registry
if: ${{ github.event_name != 'pull_request' }}
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | buildah login -u parca-dev --password-stdin ghcr.io
echo "${{ secrets.QUAY_PASSWORD }}" | buildah login -u "${{ secrets.QUAY_USERNAME }}" --password-stdin quay.io
echo "${{ secrets.GITHUB_TOKEN }}" | podman login -u parca-dev --password-stdin ghcr.io
echo "${{ secrets.QUAY_PASSWORD }}" | podman login -u "${{ secrets.QUAY_USERNAME }}" --password-stdin quay.io
- name: Push container
if: ${{ github.event_name != 'pull_request' }}
Expand Down

0 comments on commit 9fc6417

Please sign in to comment.