Merge pull request #10961 from rabbitmq/fix-docker-image-build-failures

GitHub Actions: Add GHCR login step to `test-{authnz,selenium}.yaml` workflows
This commit is contained in:
Rin Kuryloski 2024-04-12 15:21:08 +02:00 committed by GitHub
commit 57f2f180c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 15 additions and 1 deletions

View File

@ -29,7 +29,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_TOKEN }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

View File

@ -47,6 +47,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Configure OTP & Elixir
uses: erlef/setup-beam@v1.17
with:

View File

@ -44,6 +44,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Configure OTP & Elixir
uses: erlef/setup-beam@v1.17
with: