Skip to content

Commit a439307

Browse files
committed
fix ci
1 parent d81d7b0 commit a439307

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
node-version: '20'
2222

2323
- name: Install dependencies
24-
run: npm install
24+
run: npm ci
2525

2626
- name: Check
2727
run: npm run ci
@@ -39,7 +39,7 @@ jobs:
3939
node-version: '20'
4040

4141
- name: Install dependencies
42-
run: npm install
42+
run: npm ci
4343

4444
- name: Get version
4545
id: get_version
@@ -64,9 +64,8 @@ jobs:
6464
- name: Get tag description
6565
id: tag_description
6666
run: |
67-
TAG_DESC=$(git tag -l --format='%(contents)' ${{ github.ref_name }})
6867
echo "TAG_DESC<<EOF" >> $GITHUB_OUTPUT
69-
echo "$TAG_DESC" >> $GITHUB_OUTPUT
68+
git tag -l --format='%(contents)' ${{ github.ref_name }} >> $GITHUB_OUTPUT
7069
echo "EOF" >> $GITHUB_OUTPUT
7170
7271
- name: Create Release
@@ -81,11 +80,13 @@ jobs:
8180
8281
${{ steps.tag_description.outputs.TAG_DESC }}
8382
84-
To install the Spreadsheet component:
85-
83+
### To install the Spreadsheet component
84+
8685
Copy the spreadsheet.handlebars file to your project's 'sqlpage/templates' directory.
8786
You can then use the component in your SQLPage project with `select 'spreadsheet' as component`.
8887
88+
### Offline distribution
89+
8990
The default distribution downloads the spreadsheet assets at runtime from the internet.
9091
If you want to install the component entirely offline, you can use the `release.zip` distribution:
9192
1. Unzip the release.zip file

0 commit comments

Comments
 (0)