build: prepare hook failure in docker

This commit is contained in:
kunish 2024-02-01 18:27:32 +08:00
parent 7b0407cee2
commit 9e5b033214
No known key found for this signature in database
GPG Key ID: 647A12B4F782C430
2 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,5 @@
name: clean old package name: clean old package
on: on:
workflow_dispatch: workflow_dispatch:
schedule: schedule:
@ -9,7 +10,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/delete-package-versions@v4 - uses: actions/delete-package-versions@v4
with: with:
package-name: 'metacubexd' package-name: 'metacubexd'
package-type: 'container' package-type: 'container'
min-versions-to-keep: 3 min-versions-to-keep: 3

View File

@ -1,5 +1,6 @@
FROM docker.io/oven/bun:alpine as builder FROM docker.io/oven/bun:alpine as builder
ENV HUSKY=0
WORKDIR /build WORKDIR /build
COPY . . COPY . .