Skip to content

Commit

Permalink
Merge pull request #88 from BCDevOps/bug/docker-publish
Browse files Browse the repository at this point in the history
Fix docker publish workflow bugs
  • Loading branch information
WadeBarnes authored Sep 22, 2021
2 parents eb0a26a + 24de7bf commit d2c8909
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/bc-mariadb-docker-publish.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Backup Container Mongo - Docker Publish
name: Backup Container MariaDB - Docker Publish

on:
release:
types: [published, edited, released]
types: [published, edited]


jobs:
Expand Down Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Push to Docker Hub
uses: docker/build-push-action@v2
with:
context: docker
tags: ${{ steps.meta.outputs.tags }}
file: Dockerfile_MariaDB
file: docker/Dockerfile_MariaDB
context: docker
push: true
6 changes: 3 additions & 3 deletions .github/workflows/bc-mongo-docker-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Backup Container Mongo - Docker Publish

on:
release:
types: [published, edited, released]
types: [published, edited]


jobs:
Expand Down Expand Up @@ -35,8 +35,8 @@ jobs:
- name: Push to Docker Hub
uses: docker/build-push-action@v2
with:
context: docker
tags: ${{ steps.meta.outputs.tags }}
file: Dockerfile_Mongo
file: docker/Dockerfile_Mongo
context: docker
push: true

8 changes: 4 additions & 4 deletions .github/workflows/bc-mssql-docker-publish.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Backup Container Mongo - Docker Publish
name: Backup Container MSSQL - Docker Publish

on:
release:
types: [published, edited, released]
types: [published, edited]


jobs:
Expand Down Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Push to Docker Hub
uses: docker/build-push-action@v2
with:
context: docker
tags: ${{ steps.meta.outputs.tags }}
file: Dockerfile_MSSQL
file: docker/Dockerfile_MSSQL
context: docker
push: true
6 changes: 3 additions & 3 deletions .github/workflows/bc-postgres-docker-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Backup Container Postgres - Docker Publish

on:
release:
types: [published, edited, released]
types: [published, edited]


jobs:
Expand Down Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Push to Docker Hub
uses: docker/build-push-action@v2
with:
context: docker
tags: ${{ steps.meta.outputs.tags }}
file: Dockerfile
file: docker/Dockerfile
context: docker
push: true

0 comments on commit d2c8909

Please sign in to comment.