Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
name: Release and Deploy
on:
push:
branches:
- master
pull_request:
types:
- closed
branches:
- master
permissions:
contents: write
jobs:
create-release:
if: github.event_name == 'pull_request' && github.event.pull_request.merged == true
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
- name: Set up Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -30,7 +31,7 @@ jobs:
with:
tag_name: v${{ env.PACKAGE_VERSION }}
name: v${{ env.PACKAGE_VERSION }}
body: ${{ github.event.head_commit.message }}
body: ${{ github.event.pull_request.title }}
draft: false
prerelease: false
env:
Expand All @@ -42,6 +43,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
- name: Set up Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -57,6 +60,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
- name: Set up Python
uses: actions/setup-python@v2
with:
Expand Down
7 changes: 6 additions & 1 deletion docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ hide:

# Release Notes

## 3.2.0 – Latest Version
## 3.2.1 – Latest Version

: - Fix issue with failing to retry login.


## 3.2.0

: - Improved handling of interactionCreate events for better stability.
- Improved log messages for rate limit when loading slash commands
Expand Down
Loading