Skip to content

Commit

Permalink
Update release types in GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
monzim committed Mar 16, 2024
1 parent 9f8e4d0 commit 0b5d96c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- live
release:
types: [published, released]
types: [published]

env:
SHORT_SHA: ${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- live
release:
types: [published, released]
types: [published]

env:
IMAGE_TAG: ${{ github.ref_type == 'tag' && github.ref || contains(github.event.head_commit.message, 'latest') && 'latest' || 'dev' }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The latest update to the UIU Discord Bot includes the following changes:

<!-- date -->

#### 2.0.0-5 (March 10, 2024)
#### 2.0.0 (March 10, 2024)

- **Configure**: Added the ability to configure the bot with the necessary information.
- **New Commands**: Added new commands for ramadan-calendar.
Expand Down
4 changes: 2 additions & 2 deletions commands/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"github.com/bwmarrin/discordgo"
)

var VERSION = "2.0.0-4"
var BUILD = time.Date(2024, time.March, 10, 22, 45, 01, 0, time.UTC)
var VERSION = "2.0.0"
var BUILD = time.Date(2024, time.March, 16, 20, 45, 01, 0, time.UTC)

var handlerVersion = Commnad{
Trigger: "version",
Expand Down

0 comments on commit 0b5d96c

Please sign in to comment.