CI: update Debian-build notifications, too

This commit is contained in:
Adriaan de Groot 2021-02-02 00:13:07 +01:00
parent 455cc29bc3
commit 81e5bf4e6e

View file

@ -74,14 +74,15 @@ jobs:
uses: rectalogic/notify-irc@v1 uses: rectalogic/notify-irc@v1
if: ${{ success() && github.repository == 'calamares/calamares' }} if: ${{ success() && github.repository == 'calamares/calamares' }}
with: with:
server: chat.freenode.net
nickname: cala-notify
channel: "#calamares" channel: "#calamares"
message: "${{ github.workflow }} OK ${{ github.repository }} ${{ steps.pre_build.outputs.message }}" message: "${{ github.workflow }} OK ${{ github.repository }} ${{ steps.pre_build.outputs.message }}"
- name: "notify: fail" - name: "notify: fail"
uses: rectalogic/notify-irc@v1 uses: rectalogic/notify-irc@v1
if: ${{ failure() && github.repository == 'calamares/calamares' }} if: ${{ failure() && github.repository == 'calamares/calamares' }}
with: with:
server: chat.freenode.net
nickname: cala-notify
channel: "#calamares" channel: "#calamares"
message: | message: "${{ github.workflow }} FAIL ${{ github.repository }} ${{ steps.pre_build.outputs.message }}\n.. DIFF ${{ github.event.compare }}"
${{ github.workflow }} FAIL ${{ github.repository }} ${{ steps.pre_build.outputs.message }}
.. DIFF ${{ github.event.compare }}
# END