diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 718ccdd243..753036c7b5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -381,6 +381,18 @@ jobs: df -h docker system df + # google chat notification about release + notification: + name: Google chat notification about release and published version + needs: [publish] + runs-on: ubuntu-latest + if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags') + steps: + - name: Send notification to google chat room "DSP releases" + uses: lakto/google-chat-action@main + with: + url: ${{ secrets.GOOGLE_CHAT_DSP_RELEASES_WEBHOOK_URL }} + # deploy documentation only on release deploy-docs: name: Deploy docs (on release only)