Skip to content

Commit a514da8

Browse files
committed
feat: add enhanced CSS properties and builders; tag 0.1.4
1 parent 5a4dedd commit a514da8

File tree

7 files changed

+1882
-1
lines changed

7 files changed

+1882
-1
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
calcit.cirru -diff linguist-generated
3+
yarn.lock -diff linguist-generated
4+
llms/* -diff linguist-generated
5+
Agents.md -diff linguist-generated

.github/workflows/release.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: release
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
publish:
9+
runs-on: ubuntu-22.04
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: install moonbit
14+
run: |
15+
curl -fsSL https://cli.moonbitlang.com/install/unix.sh | bash
16+
echo "$HOME/.moon/bin" >> $GITHUB_PATH
17+
18+
- name: moon check
19+
run: moon update && moon version && moon check --target js
20+
21+
- name: moon test
22+
run: moon build --target js --debug
23+
24+
- name: setup credentials
25+
run: |
26+
mkdir -p ~/.moon
27+
echo '${{ secrets.MOON_CREDENTIALS }}' > ~/.moon/credentials.json
28+
29+
- name: moon publish
30+
run: moon publish

0 commit comments

Comments
 (0)