diff --git a/.gitea/workflows/release-charts-cloudflared.yml b/.gitea/workflows/release-charts-cloudflared.yml index cd6225e..b3f6b54 100644 --- a/.gitea/workflows/release-charts-cloudflared.yml +++ b/.gitea/workflows/release-charts-cloudflared.yml @@ -55,3 +55,12 @@ jobs: tag_name: ${{ env.CHART_NAME }}-${{ env.CHART_VERSION }} files: |- ${{ env.PACKAGE_PATH }} + + - name: Actions Ntfy + run: | + curl \ + -H "Authorization: Bearer ${{ secrets.NTFY_CRED }}" \ + -H "Title: Chart Released: ${{ env.CHART_NAME }}-${{ env.CHART_VERSION }}" \ + -H "Content-Type: text/plain" \ + -d $'Repo: ${{ gitea.repository }}\nCommit: ${{ gitea.sha }}\nRef: ${{ gitea.ref }}\nStatus: ${{ job.status}}' \ + ${{ secrets.NTFY_URL }} diff --git a/.gitea/workflows/release-charts-generic-device-plugin.yml b/.gitea/workflows/release-charts-generic-device-plugin.yml index 2a3bfab..e379d80 100644 --- a/.gitea/workflows/release-charts-generic-device-plugin.yml +++ b/.gitea/workflows/release-charts-generic-device-plugin.yml @@ -55,3 +55,12 @@ jobs: tag_name: ${{ env.CHART_NAME }}-${{ env.CHART_VERSION }} files: |- ${{ env.PACKAGE_PATH }} + + - name: Actions Ntfy + run: | + curl \ + -H "Authorization: Bearer ${{ secrets.NTFY_CRED }}" \ + -H "Title: Chart Released: ${{ env.CHART_NAME }}-${{ env.CHART_VERSION }}" \ + -H "Content-Type: text/plain" \ + -d $'Repo: ${{ gitea.repository }}\nCommit: ${{ gitea.sha }}\nRef: ${{ gitea.ref }}\nStatus: ${{ job.status}}' \ + ${{ secrets.NTFY_URL }} diff --git a/.gitea/workflows/release-charts-postgres-cluster.yml b/.gitea/workflows/release-charts-postgres-cluster.yml index 2c83a4e..7cfb180 100644 --- a/.gitea/workflows/release-charts-postgres-cluster.yml +++ b/.gitea/workflows/release-charts-postgres-cluster.yml @@ -55,3 +55,12 @@ jobs: tag_name: ${{ env.CHART_NAME }}-${{ env.CHART_VERSION }} files: |- ${{ env.PACKAGE_PATH }} + + - name: Actions Ntfy + run: | + curl \ + -H "Authorization: Bearer ${{ secrets.NTFY_CRED }}" \ + -H "Title: Chart Released: ${{ env.CHART_NAME }}-${{ env.CHART_VERSION }}" \ + -H "Content-Type: text/plain" \ + -d $'Repo: ${{ gitea.repository }}\nCommit: ${{ gitea.sha }}\nRef: ${{ gitea.ref }}\nStatus: ${{ job.status}}' \ + ${{ secrets.NTFY_URL }}