Skip to content

Commit

Permalink
ci: fix typo and allow releasing branches
Browse files Browse the repository at this point in the history
  • Loading branch information
ckohen committed Aug 28, 2024
1 parent 89d21e4 commit 40eeded
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build dependencies
run: pnpm run build

- name: Pubish packages
- name: Publish packages
uses: ./packages/actions/src/releasePackages
with:
exclude: '@discordjs/docgen'
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ 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
Expand Down Expand Up @@ -44,6 +48,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref || '' }}

- name: Install Node.js v20
uses: actions/setup-node@v4
Expand Down

0 comments on commit 40eeded

Please sign in to comment.