Skip to content

Commit

Permalink
chore!: change application name (#17)
Browse files Browse the repository at this point in the history
* chore: change module name

* fix: fix import path

* fix: fix application name
  • Loading branch information
aqyuki authored Sep 13, 2024
1 parent 1a8bed5 commit 6521c34
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
run: |
docker build --tag ghcr.io/$GITHUB_ACTOR/expand-bot:latest \
--tag ghcr.io/$GITHUB_ACTOR/expand-bot:$(echo $GITHUB_SHA | head -c7) \
docker build --tag ghcr.io/$GITHUB_ACTOR/cham:latest \
--tag ghcr.io/$GITHUB_ACTOR/cham:$(echo $GITHUB_SHA | head -c7) \
.
- name: Push Docker image
run: |
docker push ghcr.io/$GITHUB_ACTOR/expand-bot:latest
docker push ghcr.io/$GITHUB_ACTOR/expand-bot:$(echo $GITHUB_SHA | head -c7)
docker push ghcr.io/$GITHUB_ACTOR/cham:latest
docker push ghcr.io/$GITHUB_ACTOR/cham:$(echo $GITHUB_SHA | head -c7)
2 changes: 1 addition & 1 deletion discord/bot.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"time"

"github.com/aqyuki/expand-bot/logging"
"github.com/aqyuki/cham/logging"
"github.com/bwmarrin/discordgo"
"go.uber.org/zap"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/aqyuki/expand-bot
module github.com/aqyuki/cham

go 1.22.2

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"
"os/signal"

"github.com/aqyuki/expand-bot/discord"
"github.com/aqyuki/expand-bot/logging"
"github.com/aqyuki/cham/discord"
"github.com/aqyuki/cham/logging"
)

type exitCode int
Expand Down

0 comments on commit 6521c34

Please sign in to comment.