Skip to content

chore: bump version #694

chore: bump version

chore: bump version #694

Workflow file for this run

name: Deploy Tiddlywiki To Github Pages
on:
push:
branches:
- main
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.js and Pnpm
uses: actions/setup-node@v3
with:
node-version: latest
cache: "pnpm"
- name: Install Dependency
run: pnpm install # --frozen-lockfile
- name: Build Library and static website
run: pnpm minify && pnpm run publish
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: ./dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1