The bump to pnpm v10 was causing too many mysterious timeouts in a few places. Reverting until we can fully investigate.
53 lines
1.4 KiB
YAML
53 lines
1.4 KiB
YAML
name: post-release
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- published
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: 'Release tag to process (optional)'
|
|
required: false
|
|
default: ''
|
|
|
|
env:
|
|
NODE_VERSION: 23.11.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/github-releases-to-discord@v1.16.2
|
|
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'
|