diff --git a/.github/workflows/cd-production.yml b/.github/workflows/cd-production.yml index a654acf..fb35fe1 100644 --- a/.github/workflows/cd-production.yml +++ b/.github/workflows/cd-production.yml @@ -16,6 +16,5 @@ jobs: env: version_label: ${{ github.event.release.tag_name }} version_description: ${{ github.SHA }} - run: ./.github/workflows/slack.sh + run: sh ./.github/workflows/slack.sh shell: bash - \ No newline at end of file diff --git a/.github/workflows/slack.sh b/.github/workflows/slack.sh old mode 100644 new mode 100755 index 84020dc..e804df2 --- a/.github/workflows/slack.sh +++ b/.github/workflows/slack.sh @@ -1 +1,2 @@ -curl -X POST -H 'Content-type: application/json' --data '{"text":"Hello, World!"}' https://hooks.slack.com/services/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 \ No newline at end of file +#!/usr/bin/env bash +curl -X POST -H 'Content-type: application/json' --data '{"text":"Hello, World!"}' https://hooks.slack.com/services/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 \ No newline at end of file