mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
967f3b7505
This will end up in the following Docker tags: - focal <- new - bionic < old as before - latest <- old as before, keep bionic for now until EOL is reached - v1.4 <- old as before, is bionic - v1.4-focal <- new, is focal Depends on https://github.com/aslushnikov/devops.aslushnikov.com/pull/3 to ensure it works. Relates to https://github.com/microsoft/playwright/issues/3791.
57 lines
2.1 KiB
YAML
57 lines
2.1 KiB
YAML
name: "release"
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
publish-npm-release:
|
|
name: "publish to NPM"
|
|
runs-on: ubuntu-18.04
|
|
if: github.repository == 'microsoft/playwright'
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 10
|
|
registry-url: 'https://registry.npmjs.org'
|
|
- uses: microsoft/playwright-github-action@v1
|
|
- run: npm ci
|
|
- run: npm run build
|
|
- run: utils/publish_all_packages.sh --release
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
publish-docker-release:
|
|
name: "publish to DockerHub"
|
|
# We use `docker push --all-tags` to push all tags which is a newly addition to docker
|
|
runs-on: ubuntu-20.04
|
|
if: github.repository == 'microsoft/playwright'
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: azure/docker-login@v1
|
|
with:
|
|
login-server: playwright.azurecr.io
|
|
username: playwright
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
- uses: microsoft/playwright-github-action@v1
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 10.15
|
|
- run: npm ci
|
|
- run: npm run build
|
|
- run: ./docs/docker/build.sh bionic playwright:localbuild-bionic
|
|
- run: ./docs/docker/build.sh focal playwright:localbuild-focal
|
|
- name: tag & publish
|
|
run: |
|
|
# GITHUB_REF has a form of `refs/tags/v1.3.0`.
|
|
# TAG_NAME would be `v1.3.0`
|
|
TAG_NAME=${GITHUB_REF#refs/tags/}
|
|
./docs/docker/tag_and_push.sh playwright:localbuild-bionic playwright.azurecr.io/public/playwright:latest
|
|
./docs/docker/tag_and_push.sh playwright:localbuild-bionic playwright.azurecr.io/public/playwright:bionic
|
|
./docs/docker/tag_and_push.sh playwright:localbuild-bionic playwright.azurecr.io/public/playwright:${TAG_NAME}
|
|
./docs/docker/tag_and_push.sh playwright:localbuild-bionic playwright.azurecr.io/public/playwright:${TAG_NAME}-bionic
|
|
|
|
./docs/docker/tag_and_push.sh playwright:localbuild-focal playwright.azurecr.io/public/playwright:focal
|
|
./docs/docker/tag_and_push.sh playwright:localbuild-focal playwright.azurecr.io/public/playwright:${TAG_NAME}-focal
|