updated bee-dashboard version
All checks were successful
CI / Build & deploy Cloudflare page (push) Successful in 2m37s
CI / Build bee-dashboard docker images (push) Successful in 23m27s

This commit is contained in:
2025-12-10 06:41:27 +08:00
parent 7df193097d
commit 022fa66288
2 changed files with 5 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ jobs:
with: with:
path: docker-images path: docker-images
- name: Checkout bee-dashboard sources - name: Checkout bee-dashboard sources
run: /usr/sbin/git clone -b add-redistribution-stats --depth 1 https://github.com/woggioni/bee-dashboard.git src run: /usr/sbin/git clone -b 0.33.3 --depth 1 https://github.com/woggioni/bee-dashboard.git src
- name: Execute build - name: Execute build
run: cd src && npm install run: cd src && npm install
- name: Copy _headers file - name: Copy _headers file
@@ -25,7 +25,7 @@ jobs:
CLOUDFLARE_ACCOUNT_ID: ${{ vars.CLOUDFLARE_ACCOUNT_ID }} CLOUDFLARE_ACCOUNT_ID: ${{ vars.CLOUDFLARE_ACCOUNT_ID }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
"Build bee-dashboard docker images": "Build bee-dashboard docker images":
runs-on: hostinger runs-on: woryzen
steps: steps:
- -
name: Set up Docker Buildx name: Set up Docker Buildx
@@ -53,8 +53,8 @@ jobs:
push: true push: true
pull: true pull: true
ssh: default=/home/luser/.ssh/id_ed25519 ssh: default=/home/luser/.ssh/id_ed25519
build-args: "VERSION=0.32.0" build-args: "VERSION=0.33.3"
tags: | tags: |
"gitea.woggioni.net/woggioni/bee-dashboard:0.32.0" "gitea.woggioni.net/woggioni/bee-dashboard:0.33.3"
cache-from: type=registry,ref=gitea.woggioni.net/woggioni/bee-dashboard:buildx cache-from: type=registry,ref=gitea.woggioni.net/woggioni/bee-dashboard:buildx
cache-to: type=registry,mode=max,compression=zstd,image-manifest=true,oci-mediatypes=true,ref=gitea.woggioni.net/woggioni/bee-dashboard:buildx cache-to: type=registry,mode=max,compression=zstd,image-manifest=true,oci-mediatypes=true,ref=gitea.woggioni.net/woggioni/bee-dashboard:buildx

View File

@@ -6,7 +6,7 @@ ARG VERSION
RUN --mount=type=cache,target=/var/cache/apk apk add chromium RUN --mount=type=cache,target=/var/cache/apk apk add chromium
WORKDIR /src WORKDIR /src
#ADD git@github.com:ethersphere/bee-dashboard.git#v${VERSION} . #ADD git@github.com:ethersphere/bee-dashboard.git#v${VERSION} .
ADD git@github.com:woggioni/bee-dashboard.git#add-redistribution-stats . ADD git@github.com:woggioni/bee-dashboard.git#${VERSION} .
RUN PUPPETEER_SKIP_DOWNLOAD=1 npm install RUN PUPPETEER_SKIP_DOWNLOAD=1 npm install
FROM gitea.woggioni.net/woggioni/nginx:v1.29.3 AS final FROM gitea.woggioni.net/woggioni/nginx:v1.29.3 AS final