Skip to content

Commit

Permalink
devops: use ubuntu 20.04 to build & publish docker releases (#3736)
Browse files Browse the repository at this point in the history
We rely on `docker push --all-tags` flag that exists only in the
new version of docker.

The PR to docker with the flag: docker/cli#2220
  • Loading branch information
aslushnikov authored Sep 2, 2020
1 parent 216db2c commit df12264
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish_canary_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ on:
jobs:
publish-canary-docker:
name: "publish to DockerHub"
runs-on: ubuntu-18.04
# 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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:

publish-docker-release:
name: "publish to DockerHub"
runs-on: ubuntu-18.04
# 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
Expand Down

0 comments on commit df12264

Please sign in to comment.