build-node-images-playwright #839
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: Release/test playwright images | |
on: | |
workflow_dispatch: | |
inputs: | |
release_tag: | |
description: "Tag for the images (e.g.: beta)" | |
required: true | |
apify_version: | |
description: "Apify SDK version (e.g.: ^1.0.0)" | |
required: true | |
crawlee_version: | |
description: "Crawlee version (e.g.: ^1.0.0)" | |
required: true | |
playwright_version: | |
description: "Playwright version (e.g.: 1.7.1) (must not be semver range)" | |
required: true | |
is_latest_browser_image: | |
description: If this is a release of the latest browser image. This gets autofilled by CI in crawlee | |
type: boolean | |
default: false | |
repository_dispatch: | |
types: | |
- build-node-images | |
- build-node-images-playwright | |
pull_request: | |
env: | |
RELEASE_TAG: ${{ github.event.inputs.release_tag || github.event.client_payload.release_tag || 'CI_TEST' }} | |
APIFY_VERSION: ${{ github.event.inputs.apify_version || github.event.client_payload.apify_version }} | |
CRAWLEE_VERSION: ${{ github.event.inputs.crawlee_version || github.event.client_payload.crawlee_version }} | |
PLAYWRIGHT_VERSION: ${{ github.event.inputs.playwright_version || github.event.client_payload.playwright_version }} | |
IS_LATEST_BROWSER_IMAGE: ${{ github.event.inputs.is_latest_browser_image || github.event.client_payload.is_latest_browser_image || false }} | |
NODE_LATEST: 20 | |
jobs: | |
# Build master images that are not dependent on existing builds. | |
build-main: | |
runs-on: ubuntu-latest | |
strategy: | |
# By the time some build fails, other build can be already finished | |
# so fail-fast does not really prevent the publishing of all parallel builds | |
fail-fast: false | |
matrix: | |
image-name: | |
[ | |
node-playwright, | |
node-playwright-chrome, | |
node-playwright-firefox, | |
node-playwright-webkit, | |
] | |
node-version: [18, 20, 22] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare image tags | |
id: prepare-tags | |
uses: actions/github-script@v7 | |
env: | |
CURRENT_NODE: ${{ matrix.node-version }} | |
LATEST_NODE: ${{ env.NODE_LATEST }} | |
RELEASE_TAG: ${{ env.RELEASE_TAG }} | |
IMAGE_NAME: apify/actor-${{ matrix.image-name }} | |
FRAMEWORK_VERSION: ${{ env.PLAYWRIGHT_VERSION }} | |
IS_LATEST_BROWSER_IMAGE: ${{ env.IS_LATEST_BROWSER_IMAGE }} | |
with: | |
script: | | |
const generateTags = require("./.github/scripts/prepare-node-image-tags.js"); | |
return generateTags(); | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Set Dependency Versions | |
run: | | |
cd ${{ matrix.image-name }} | |
node ../.github/scripts/set-dependency-versions.js ${{ github.event_name == 'pull_request' }} | |
- # It seems that it takes at least two minutes before a newly published version | |
# becomes available in the NPM registry. We wait before starting the image builds. | |
name: Wait For Package Registry | |
uses: nick-fields/retry@v3 | |
with: | |
timeout_minutes: 2 # timeout for a single attempt | |
max_attempts: 3 | |
retry_wait_seconds: 60 # wait between retries | |
command: cd ${{ matrix.image-name }} && npm i --dry-run | |
- name: Build and tag image | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./${{ matrix.image-name }} | |
file: ./${{ matrix.image-name }}/Dockerfile | |
# For some reason build-args doesn't want to be a list, so we manually make it one | |
build-args: | | |
NODE_VERSION=${{ matrix.node-version }} | |
PLAYWRIGHT_VERSION=${{ (github.event_name != 'pull_request' && format('v{0}-', env.PLAYWRIGHT_VERSION)) || '' }} | |
load: true | |
tags: ${{ fromJson(steps.prepare-tags.outputs.result).allTags }} | |
- name: Test image | |
run: docker run ${{ fromJson(steps.prepare-tags.outputs.result).firstImageName }} | |
- name: Login to DockerHub | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.APIFY_SERVICE_ACCOUNT_DOCKERHUB_USERNAME }} | |
password: ${{ secrets.APIFY_SERVICE_ACCOUNT_DOCKERHUB_TOKEN }} | |
- name: Push images | |
if: github.event_name != 'pull_request' | |
run: docker push apify/actor-${{ matrix.image-name }} --all-tags |