-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #340 from Countly/staging
24.4.0 Release
- Loading branch information
Showing
94 changed files
with
6,969 additions
and
31,553 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Release Notice | ||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# To check the github context | ||
- name: Dump Github context | ||
env: | ||
GITHUB_CONTEXT: ${{ toJSON(github) }} | ||
run: echo "$GITHUB_CONTEXT" | ||
- name: Send custom JSON data to Slack workflow | ||
id: slack | ||
uses: slackapi/[email protected] | ||
with: | ||
# This data can be any valid JSON from a previous step in the GitHub Action | ||
payload: | | ||
{ | ||
"repository": "${{ github.repository }}", | ||
"tag_name": "${{ github.event.release.tag_name }}", | ||
"actor": "${{ github.actor }}", | ||
"body": ${{ toJSON(github.event.release.body) }}, | ||
"html_url": "${{ github.event.release.html_url }}" | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_RELEASE }} | ||
- name: Send custom JSON data to Discord | ||
uses: sarisia/[email protected] | ||
with: | ||
webhook: ${{ secrets.DISCORD_WEBHOOK_URL }} | ||
nodetail: true | ||
title: New ${{ github.repository }} version ${{ github.event.release.tag_name }} published by ${{ github.actor }} | ||
description: | | ||
Release URL: ${{ github.event.release.html_url }} | ||
Click [here](https://github.com/Countly/countly-server/blob/master/CHANGELOG.md) to view the change log. | ||
`${{ github.event.release.body }}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.