Skip to content

Commit

Permalink
action done
Browse files Browse the repository at this point in the history
  • Loading branch information
i3rotlher committed Oct 17, 2023
1 parent 0dbb6a4 commit de387d6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/Build_and_Publish_Images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
uses: ./actions/notifyTeams
with:
title: "Publish Release DockerHub 🐳🌐"
text: "Published Images for release ${{ github.event.release.name }} successfully."
text: "Publishing Images for release ${{ github.event.release.name }} successfully."
style: "success"
webhook: ${{ secrets.MS_TEAMS_WEBHOOK_URI }}

Expand All @@ -85,7 +85,7 @@ jobs:
uses: ./actions/notifyTeams
with:
title: "Publish Release DockerHub 🐳🌐❌"
text: "Published Images for release ${{ github.event.release.name }} failed."
text: "Publishing Images for release ${{ github.event.release.name }} failed."
style: "failure"
webhook: ${{ secrets.MS_TEAMS_WEBHOOK_URI }}

Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Build Docker Image as Latest
run: |
docker build -t seed-test-demo:${{ steps.get_tag_name.outputs.version }} .
docker tag seed-test-demo:${{ steps.get_tag_name.outputs.version }} ${{ secrets.DOCKER_USERNAME }}/seed-test-demo:latest
docker tag seed-test-demo:${{ steps.get_tag_name.outputs.version }} ${{ secrets.DOCKER_USERNAME }}/seed-test-demo:l${{ steps.get_tag_name.outputs.version }}
- name: Push Docker Image to Docker Hub
run: |
Expand All @@ -145,7 +145,7 @@ jobs:
uses: ./actions/notifyTeams
with:
title: "Publish Test-Release DockerHub 🧪🐳🌐"
text: "Published Images for test-release ${{ github.event.release.name }} successfully."
text: "Publishing Images for test-release ${{ github.event.release.name }} successfully."
style: "success"
webhook: ${{ secrets.MS_TEAMS_WEBHOOK_URI }}

Expand All @@ -154,6 +154,6 @@ jobs:
uses: ./actions/notifyTeams
with:
title: "Publish Test-Release DockerHub 🐳🌐❌"
text: "Published Images for test-release ${{ github.event.release.name }} failed."
text: "Publishing Images for test-release ${{ github.event.release.name }} failed."
style: "failure"
webhook: ${{ secrets.MS_TEAMS_WEBHOOK_URI }}

0 comments on commit de387d6

Please sign in to comment.