Skip to content

Commit

Permalink
update cargo lock
Browse files Browse the repository at this point in the history
  • Loading branch information
qdlmcfresh committed Jan 2, 2024
2 parents dc75f95 + 33621a1 commit 630e251
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Create and publish a Docker image
name: Create and publish a Docker image (test)

on:
push:
Expand Down Expand Up @@ -98,4 +98,4 @@ jobs:
-
name: Inspect image
run: |
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ env.REGISTRY_TAG }}
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ env.REGISTRY_TAG }}
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ songbird = { version = ">=0.3.2", features = ["yt-dlp"] }
tracing = ">=0.1"
tracing-subscriber = ">=0.2"
tracing-futures = ">=0.2"
dotenv = "0.15.0"
regex = "1.7.3"
dotenv = ">=0.15.0"
regex = ">=1.7.3"
sqlx = { version = ">=0.6.2", features = [
"runtime-tokio-native-tls",
"sqlite",
"chrono",
"macros",
] }
rand = "0.8.5"
edit-distance = "2.1.0"
rand = ">=0.8.5"
edit-distance = ">=2.1.0"

[dependencies.serenity]
version = ">=0.11.5"
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ RUN cargo install sqlx-cli
WORKDIR /songbird
COPY ./ .
ENV DATABASE_URL="sqlite:db/database.sqlite"
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
RUN mkdir db
RUN sqlx database setup
RUN cargo build --release
Expand Down

0 comments on commit 630e251

Please sign in to comment.