Skip to content

Commit

Permalink
v2023.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Gk0Wk committed Jan 7, 2023
1 parent 78b1097 commit 7878ef5
Show file tree
Hide file tree
Showing 12 changed files with 512 additions and 16,154 deletions.
25 changes: 24 additions & 1 deletion .github/workflows/make-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,30 @@ jobs:
cp -r * /tmp/moderntiddlydev/
find . -maxdepth 1 ! -name .git -exec cp -r -t /tmp/moderntiddlydev/ {} +
mv /tmp/moderntiddlydev upload
rm -rf upload/.git upload/README.md
rm -rf upload/.git upload/README.md upload/pnpm-lock.yaml
- name: Setup NodeJS
uses: actions/setup-node@v2-beta
with:
node-version: '16'

- name: Cache dependencies
uses: actions/cache@v3
with:
path: |
**/node_modules
~/.pnpm-store
~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
${{ runner.os }}-node-
- name: Install Dependencies
run: npm install -g pnpm && pnpm install

- name: Build Plugins
run: pnpm run build && cp dist/\$__plugins_Modern.TiddlyDev_doc.json wiki/tiddlers/\$__plugins_Modern.TiddlyDev_doc.json

- name: Deploy
uses: s0/git-publish-subdir-action@develop
Expand Down
256 changes: 0 additions & 256 deletions .scripts/index.ts

This file was deleted.

0 comments on commit 7878ef5

Please sign in to comment.