v3.8.0 #80
Workflow file for this run
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
name: post-release | |
on: | |
release: | |
types: | |
- published | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'Release tag to process (optional)' | |
required: false | |
default: '' | |
env: | |
NODE_VERSION: 22.6.0 | |
PNPM_VERSION: 9.7.1 | |
DO_NOT_TRACK: 1 # Disable Turbopack telemetry | |
NEXT_TELEMETRY_DISABLED: 1 # Disable Next telemetry | |
jobs: | |
post_release: | |
runs-on: ubuntu-24.04 | |
if: ${{ github.event_name != 'workflow_dispatch' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/release-commenter | |
continue-on-error: true | |
env: | |
ACTIONS_STEP_DEBUG: true | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
tag-filter: 'v\d' | |
# Change to blank to disable commenting | |
# comment-template: '' | |
comment-template: | | |
🚀 This is included in version {release_link} | |
github-releases-to-discord: | |
runs-on: ubuntu-24.04 | |
if: ${{ github.event_name != 'workflow_dispatch' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Github Releases To Discord | |
uses: SethCohen/[email protected] | |
with: | |
webhook_url: ${{ secrets.DISCORD_RELEASES_WEBHOOK_URL }} | |
color: '16777215' | |
username: 'Payload Releases' | |
avatar_url: 'https://l4wlsi8vxy8hre4v.public.blob.vercel-storage.com/discord-bot-logo.png' |