Skip to content

Commit

Permalink
feat: 6.0.889
Browse files Browse the repository at this point in the history
  • Loading branch information
leomotors committed Dec 28, 2023
1 parent 536482d commit fbf12c0
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 5 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ Dockerfile
**/.turbo
**/.next
**/.env
test_docker
9 changes: 5 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v4

- name: Publish Release
uses: Leomotors/auto-publish-release@main
uses: leomotors/auto-publish-release@main
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
title: "Waifu Bot"
Expand Down Expand Up @@ -43,9 +43,9 @@ jobs:
cache: pnpm

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -58,11 +58,12 @@ jobs:
separator: "."

- name: Build Docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile
push: true
tags: ghcr.io/leomotors/waifu-bot:${{ github.ref_name }},ghcr.io/leomotors/waifu-bot:v${{ steps.version.outputs._0 }},ghcr.io/leomotors/waifu-bot:latest
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,6 @@ vite.config.ts.timestamp-*
# Build
dist

# Secrets
.env
test_docker
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

Previous changelog before 4.0.605 may not be noted here.

## [6.0.889] - 2023-12-28

- chore: bump deps
- feat: docker image for arm64

## [6.0.888.1] - 2023-11-19

- fix: sharp bug
Expand Down
7 changes: 7 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,15 @@ services:
POSTGRES_USER: username
POSTGRES_PASSWORD: password
POSTGRES_DB: waifubot
networks:
- postgres
ports:
- 5432:5432

volumes:
database-storage:

networks:
postgres:
name: postgres
driver: bridge
2 changes: 1 addition & 1 deletion packages/constants/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// * Data such as App Version and other "constants"
// * will be in this package

export const AppVersion = "6.0.888.1";
export const AppVersion = "6.0.889";

export const YoutubeURLPrefix = "https://www.youtube.com/watch?v=";

Expand Down

0 comments on commit fbf12c0

Please sign in to comment.