From 0eb84acc4b2d6bd906fd68967d91d0fa76c19fdc Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 28 Sep 2023 22:05:07 +0200 Subject: [PATCH] CI: migrate push workflow to ci/ scripts --- .github/workflows/push.yml | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 9b6e790bb..a76b1e284 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -32,27 +32,7 @@ jobs: uses: calamares/actions/generic-checkout@v5 - name: "install dependencies" shell: bash - run: | - ./ci/deps-neon.sh + run: ./ci/deps-neon.sh - name: "build" id: build uses: calamares/actions/generic-build@v4 - - name: "notify: ok" - if: ${{ success() && github.repository == 'calamares/calamares' }} - uses: calamares/actions/matrix-notify@v4 - with: - token: ${{ secrets.MATRIX_TOKEN }} - room: ${{ secrets.MATRIX_ROOM }} - message: | - OK ${{ github.workflow }} in ${{ github.repository }} by ${{ github.actor }} on ${{ github.event.ref }} - .. ${{ steps.build.outputs.git-summary }} - - name: "notify: fail" - if: ${{ failure() && github.repository == 'calamares/calamares' }} - uses: calamares/actions/matrix-notify@v4 - with: - token: ${{ secrets.MATRIX_TOKEN }} - room: ${{ secrets.MATRIX_ROOM }} - message: | - FAIL ${{ github.workflow }} in ${{ github.repository }} by ${{ github.actor }} on ${{ github.event.ref }} - .. ${{ steps.build.outputs.git-summary }} - .. ${{ github.event.compare }}