From de387d6c085dd835451c4b3ae3bbfbf2973b37ce Mon Sep 17 00:00:00 2001 From: i3rotlher Date: Tue, 17 Oct 2023 17:28:01 +0200 Subject: [PATCH] action done --- .github/workflows/Build_and_Publish_Images.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Build_and_Publish_Images.yaml b/.github/workflows/Build_and_Publish_Images.yaml index 0930e7e22..f117b046c 100644 --- a/.github/workflows/Build_and_Publish_Images.yaml +++ b/.github/workflows/Build_and_Publish_Images.yaml @@ -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 }} @@ -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 }} @@ -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: | @@ -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 }} @@ -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 }}