Skip to content

Delete unused site

Delete unused site #29

Workflow file for this run

name: Build BDino.info
on:
push:
branches:
- master
jobs:
Build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Npm Install
run: npm install
- name: Build bdino.info
run: npm run build-bdino
- name: Upload bdino.info
run: npx wrangler pages deploy --project-name bdino-info --branch=master ./dist
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}