Skip to content

Release v3.14.0-RC-3 #35

Release v3.14.0-RC-3

Release v3.14.0-RC-3 #35

Workflow file for this run

name: Notify on Release
on:
release:
types:
- published
jobs:
notify:
name: Send job complete notification
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Common Setup
uses: ./.github/actions/common-setup
- name: Retrieve Project Name
run: echo "PROJECT_NAME=$(${{github.workspace}}/gradlew -q printProjectName)" >> $GITHUB_ENV
id: project_name
- name: Set pre-release environment
if: github.event.prerelease == 'true'
run: |
echo "RELEASE_TYPE=pre-release" >> $GITHUB_ENV
- name: Set release environment
if: github.event.prerelease == 'false'
run: |
echo "RELEASE_TYPE=release" >> $GITHUB_ENV
- name: Notify
uses: appleboy/[email protected]
with:
webhook_id: ${{ github.event.prerelease == 'false' && secrets.DISCORD_RELEASE_WEBHOOK_ID || secrets.DISCORD_WEBHOOK_ID }}
webhook_token: ${{ github.event.prerelease == 'false' && secrets.DISCORD_RELEASE_WEBHOOK_TOKEN || secrets.DISCORD_WEBHOOK_TOKEN }}
color: "#00FF00"
username: "${{ env.PROJECT_NAME }} Release Bot"
message: >
An ${{ env.PROJECT_NAME }} ${{ env.RELEASE_TYPE }} was deployed by ${{ github.actor }}:
https://github.com/${{ github.repository }}/releases/tag/${{ github.ref_name }}" >> $GITHUB_ENV