Skip to content

Commit e3d3764

Browse files
authored
Fix image name (#3)
1 parent 7aff872 commit e3d3764

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77

88
jobs:
99
docker:
10+
name: Docker Build & Push
1011
runs-on: ubuntu-latest
1112
steps:
1213
-
@@ -27,7 +28,7 @@ jobs:
2728
uses: docker/build-push-action@v2
2829
with:
2930
push: true
30-
tags: tomroush/python-selenium-firefox:latest
31+
tags: tomroush/python-selenium-firefox-docker:latest
3132
-
3233
name: Image digest
3334
run: echo ${{ steps.docker_build.outputs.digest }}

.github/workflows/pr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55

66
jobs:
77
docker:
8+
name: Docker Build
89
runs-on: ubuntu-latest
910
steps:
1011
-
@@ -19,7 +20,7 @@ jobs:
1920
uses: docker/build-push-action@v2
2021
with:
2122
push: false
22-
tags: tomroush/python-selenium-firefox:latest
23+
tags: tomroush/python-selenium-firefox-docker:latest
2324
-
2425
name: Image digest
2526
run: echo ${{ steps.docker_build.outputs.digest }}

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
jobs:
88
docker:
9+
name: Docker Build & Push
910
runs-on: ubuntu-latest
1011
steps:
1112
-
@@ -26,7 +27,7 @@ jobs:
2627
uses: docker/build-push-action@v2
2728
with:
2829
push: true
29-
tags: tomroush/python-selenium-firefox:latest,tomroush/python-selenium-firefox:${{ github.event.release.tag_name }}
30+
tags: tomroush/python-selenium-firefox-docker:latest,tomroush/python-selenium-firefox-docker:${{ github.event.release.tag_name }}
3031
-
3132
name: Image digest
3233
run: echo ${{ steps.docker_build.outputs.digest }}

0 commit comments

Comments
 (0)