Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/TheTipo01/YADMB
Browse files Browse the repository at this point in the history
  • Loading branch information
slashtube committed Nov 11, 2023
2 parents 7d58e8c + 255369c commit e957e0d
Show file tree
Hide file tree
Showing 4 changed files with 287 additions and 54 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21.3
go-version: 1.21.4
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ RUN GOOS=$TARGETOS GOARCH=$TARGETARCH CGO_ENABLED=0 go build -trimpath -ldflags

FROM thetipo01/dca

RUN apk add --no-cache \
ffmpeg \
yt-dlp \
gcompat
RUN apk add --no-cache ffmpeg python3 gcompat

RUN wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O /usr/bin/yt-dlp
RUN chmod a+rx /usr/bin/yt-dlp

COPY --from=build /yadmb/yadmb /usr/bin/

Expand Down
29 changes: 14 additions & 15 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,36 @@ module github.com/TheTipo01/YADMB
go 1.16

require (
cloud.google.com/go/compute v1.23.1 // indirect
cloud.google.com/go/compute v1.23.3 // indirect
github.com/bwmarrin/discordgo v0.27.2-0.20230922130345-1f0b57f11024
github.com/bwmarrin/lit v0.0.0-20190813132558-fd4b44871312
github.com/bytedance/sonic v1.10.2 // indirect
github.com/chenzhuoyu/iasm v0.9.1 // indirect
github.com/dchest/uniuri v1.2.0
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
github.com/gin-contrib/cors v1.4.0 // indirect
github.com/gin-contrib/static v0.0.1 // indirect
github.com/gin-contrib/cors v1.4.0
github.com/gin-contrib/static v0.0.1
github.com/gin-gonic/gin v1.9.1
github.com/go-playground/validator/v10 v10.15.5 // indirect
github.com/go-playground/validator/v10 v10.16.0 // indirect
github.com/go-sql-driver/mysql v1.7.1
github.com/goccy/go-json v0.10.2
github.com/gorilla/websocket v1.5.0 // indirect
github.com/gorilla/websocket v1.5.1
github.com/kkyr/fig v0.3.2
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/zmb3/spotify/v2 v2.4.0
golang.org/x/arch v0.5.0 // indirect
golang.org/x/oauth2 v0.13.0
golang.org/x/tools v0.14.0 // indirect
google.golang.org/api v0.148.0
golang.org/x/arch v0.6.0 // indirect
golang.org/x/oauth2 v0.14.0
golang.org/x/tools v0.15.0 // indirect
google.golang.org/api v0.150.0
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b // indirect
google.golang.org/grpc v1.59.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
lukechampine.com/uint128 v1.3.0 // indirect
modernc.org/ccgo/v3 v3.16.15 // indirect
modernc.org/libc v1.27.0 // indirect
modernc.org/sqlite v1.26.0
modernc.org/libc v1.33.0 // indirect
modernc.org/sqlite v1.27.0
modernc.org/strutil v1.2.0 // indirect
)
Loading

0 comments on commit e957e0d

Please sign in to comment.