- switched bee dashboard to my own branch
Some checks failed
CI / Build & deploy Cloudflare page (push) Failing after 2m6s
CI / Build bee-dashboard docker images (push) Has been cancelled

- added beed dashboard deployment to Cloudflare Pages
This commit is contained in:
2025-09-10 10:24:07 +08:00
parent 9e7b5c1657
commit 59084772a5
2 changed files with 22 additions and 5 deletions

View File

@@ -6,6 +6,24 @@ on:
- 'bee-dashboard/**' - 'bee-dashboard/**'
- '.gitea/workflows/build-bee-dashboard.yaml' - '.gitea/workflows/build-bee-dashboard.yaml'
jobs: jobs:
"Build & deploy Cloudflare page":
runs-on: hostinger
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
path: docker-images
- name: Checkout bee-dashboard sources
run: /usr/sbin/git clone -b add-redistribution-stats --depth 1 https://github.com/woggioni/bee-dashboard.git src
- name: Execute build
run: cd src && npm install
- name: Copy _headers file
run: ls && pwd && cp docker-images/bee-dashboard/_headers src/build
- name: Deploy to Cloudflare
run: npx wrangler pages deploy --project-name bee-dashboard --branch main src/build
env:
CLOUDFLARE_ACCOUNT_ID: ${{ vars.CLOUDFLARE_ACCOUNT_ID }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
"Build bee-dashboard docker images": "Build bee-dashboard docker images":
runs-on: hostinger runs-on: hostinger
steps: steps:
@@ -40,4 +58,3 @@ jobs:
"gitea.woggioni.net/woggioni/bee-dashboard:0.32.0" "gitea.woggioni.net/woggioni/bee-dashboard:0.32.0"
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

@@ -5,10 +5,10 @@ FROM base AS build
ARG VERSION 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} .
RUN PUPPETEER_SKIP_DOWNLOAD=1 npm ci ADD git@github.com:woggioni/bee-dashboard.git#add-redistribution-stats .
RUN npm run build RUN PUPPETEER_SKIP_DOWNLOAD=1 npm install
FROM gitea.woggioni.net/woggioni/nginx:v1.29.0 AS final FROM gitea.woggioni.net/woggioni/nginx:v1.29.1 AS final
COPY --from=build /src/build /srv/http COPY --from=build /src/build /srv/http
COPY bee-dashboard.conf /etc/nginx/conf.d/bee-dashboard.conf COPY bee-dashboard.conf /etc/nginx/conf.d/bee-dashboard.conf