Publish Release Docker #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Release Docker | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
publish-canary-docker: | |
name: publish to DockerHub | |
runs-on: ubuntu-22.04 | |
permissions: | |
id-token: write # This is required for OIDC login (azure/login) to succeed | |
contents: read # This is required for actions/checkout to succeed | |
environment: Docker | |
if: github.repository == 'microsoft/playwright-java' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Azure login | |
uses: azure/login@v2 | |
with: | |
client-id: ${{ secrets.AZURE_DOCKER_CLIENT_ID }} | |
tenant-id: ${{ secrets.AZURE_DOCKER_TENANT_ID }} | |
subscription-id: ${{ secrets.AZURE_DOCKER_SUBSCRIPTION_ID }} | |
- name: Login to ACR via OIDC | |
run: az acr login --name playwright | |
- name: Set up Docker QEMU for arm64 docker builds | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: arm64 | |
- uses: actions/checkout@v4 | |
- run: ./utils/docker/publish_docker.sh stable |