Release #8
This file contains hidden or 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: Release | |
on: | |
workflow_dispatch: | |
inputs: | |
ref: | |
description: 'The branch, tag or SHA to checkout' | |
required: true | |
default: 'main' | |
package: | |
description: 'The published name of a single package to release' | |
type: choice | |
required: false | |
options: | |
- all | |
- discord.js | |
- '@discordjs/brokers' | |
- '@discordjs/builders' | |
- '@discordjs/collection' | |
- '@discordjs/core' | |
- 'create-discord-bot' | |
- '@discordjs/docgen' | |
- '@discordjs/formatters' | |
- '@discordjs/next' | |
- '@discordjs/proxy' | |
- '@discordjs/rest' | |
- '@discordjs/structures' | |
- '@discordjs/util' | |
- '@discordjs/voice' | |
- '@discordjs/ws' | |
exclude: | |
description: 'Comma separated list of packages to exclude from release (if not depended upon)' | |
required: false | |
type: string | |
default: '@discordjs/docgen,@discordjs/next' | |
dry_run: | |
description: Perform a dry run? | |
type: boolean | |
default: false | |
jobs: | |
npm-publish: | |
name: npm publish | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
if: github.repository_owner == 'discordjs' | |
steps: | |
- uses: actions/create-github-app-token@v2 | |
id: app-token | |
with: | |
app-id: ${{ vars.DISCORDJS_APP_ID }} | |
private-key: ${{ secrets.DISCORDJS_APP_KEY_RELEASE }} | |
permission-contents: write | |
- name: Checkout repository | |
uses: actions/checkout@v5 | |
with: | |
token: ${{ steps.app-token.outputs.token }} | |
ref: ${{ inputs.ref || '' }} | |
- name: Install Node.js v22 | |
uses: actions/setup-node@v5 | |
with: | |
node-version: 22 | |
package-manager-cache: false | |
registry-url: https://registry.npmjs.org/ | |
- name: Install dependencies | |
uses: ./packages/actions/src/pnpmCache | |
- name: Build dependencies | |
run: pnpm run build | |
- name: Checkout main repository | |
if: ${{ inputs.ref && inputs.ref != 'main' }} | |
uses: actions/checkout@v5 | |
with: | |
path: 'main' | |
- name: Install action deps (non-main ref only) | |
if: ${{ inputs.ref && inputs.ref != 'main' }} | |
shell: bash | |
working-directory: ./main | |
env: | |
COREPACK_ENABLE_STRICT: 0 | |
run: | | |
pnpm self-update 10 | |
pnpm install --filter @discordjs/actions --frozen-lockfile --prefer-offline --loglevel error | |
- name: Release packages (non-main ref) | |
if: ${{ inputs.ref && inputs.ref != 'main' }} | |
uses: ./main/packages/actions/src/releasePackages | |
with: | |
package: ${{ inputs.package }} | |
exclude: ${{ inputs.exclude }} | |
dry: ${{ inputs.dry_run }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} | |
- name: Release packages (main ref) | |
if: ${{ !inputs.ref || inputs.ref == 'main' }} | |
uses: ./packages/actions/src/releasePackages | |
with: | |
package: ${{ inputs.package }} | |
exclude: ${{ inputs.exclude }} | |
dry: ${{ inputs.dry_run }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} |