Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@

calcit.cirru -diff linguist-generated
yarn.lock -diff linguist-generated

.pnp* -diff linguist-generated
.yarn/* -diff linguist-generated
.yarnrc.yml -diff linguist-generated
Copy link

Copilot AI Feb 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.gitattributes marks .yarnrc.yml as -diff linguist-generated, which will hide diffs for a small, human-edited config file. Since changes to Yarn configuration can be impactful, consider not disabling diffs for .yarnrc.yml (keep the generated/diff suppression for .pnp*/lockfiles only).

Suggested change
.yarnrc.yml -diff linguist-generated

Copilot uses AI. Check for mistakes.
61 changes: 33 additions & 28 deletions .github/workflows/upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,36 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 24
cache: 'yarn'

- uses: calcit-lang/setup-cr@0.0.8

- name: "compiles to js"
run: >
caps --ci && cr --once js
&& yarn && yarn vite build --base=./

- name: Deploy to server
id: deploy
uses: Pendect/action-rsyncer@v2.0.0
env:
DEPLOY_KEY: ${{secrets.rsync_private_key}}
with:
flags: '-avzr --progress'
options: ''
ssh_options: ''
src: 'dist/*'
dest: 'rsync-user@tiye.me:/web-assets/repo/${{ github.repository }}'

- name: Display status from deploy
run: echo "${{ steps.deploy.outputs.status }}"
- uses: actions/checkout@v4

- uses: actions/setup-node@v6
with:
node-version: 24

- name: Enable Corepack
run: |
corepack enable
corepack prepare yarn@4.12.0 --activate
yarn --version

- uses: calcit-lang/setup-cr@0.0.8

- name: "compiles to js"
run: >
caps --ci && cr --once js
&& yarn && yarn vite build --base=./

- name: Deploy to server
id: deploy
uses: Pendect/action-rsyncer@v2.0.0
env:
DEPLOY_KEY: ${{secrets.rsync_private_key}}
with:
flags: "-avzr --progress"
options: ""
ssh_options: ""
src: "dist/*"
dest: "rsync-user@tiye.me:/web-assets/repo/${{ github.repository }}"

- name: Display status from deploy
run: echo "${{ steps.deploy.outputs.status }}"
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ node_modules/
dist/

.DS_Store

.yarn/*.gz
Loading