Skip to content

Commit

Permalink
[Badge Giver] Update v2.0.4
Browse files Browse the repository at this point in the history
- Update Content -

- Fixes the auto update system (Hope this time it will work I don't want to fix it again)
  • Loading branch information
ItzKeyYT committed Aug 24, 2024
1 parent e104bf5 commit ee4fd1e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/autorelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ jobs:
id: get_commit_message
run: |
COMMIT_MSG=$(git log --format=%B -n 1 ${{ github.sha }})
echo "COMMIT_MSG=\"$COMMIT_MSG\"" >> $GITHUB_ENV
# Escape newlines for GITHUB_ENV
echo "COMMIT_MSG<<EOF" >> $GITHUB_ENV
echo "$COMMIT_MSG" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Release
uses: softprops/action-gh-release@v0.1.15
Expand All @@ -47,7 +50,7 @@ jobs:
BadgeGiver-v${{ env.VERSION }}.zip
tag_name: v${{ env.VERSION }}
name: "Update v${{ env.VERSION }}"
body: ${{ env.COMMIT_MSG }}
body: "${{ env.COMMIT_MSG }}"
token: ${{ secrets.GITHUB_TOKEN }}

permissions:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "badgegiver",
"version": "2.0.3",
"version": "2.0.4",
"description": "A project that can effortlessly obtain the Active Developer Badge on Discord using JavaScript, simplifying the process without requiring any coding expertise.",
"main": "Bot/index.js",
"scripts": {
Expand Down

0 comments on commit ee4fd1e

Please sign in to comment.