Skip to content

⬆️ Update dependency versions in project files (#616) #220

⬆️ Update dependency versions in project files (#616)

⬆️ Update dependency versions in project files (#616) #220

name: Publish Log4brains
on:
push:
branches: [ "main" ]
workflow_dispatch: # Add this line to allow manual triggering
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false # required by JamesIves/github-pages-deploy-action
fetch-depth: 0 # required by Log4brains to work correctly (needs the whole Git history)
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: "21"
- name: Install and Build Log4brains
run: |
npm install -g log4brains
log4brains build --basePath /${GITHUB_REPOSITORY#*/}
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.8.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
folder: .log4brains/out
target-folder: ''