Skip to content

Commit 1e14378

Browse files
committed
workaround windows issues
1 parent 16c8898 commit 1e14378

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/build.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@ jobs:
3030
steps:
3131
- name: Set up variables
3232
id: vars
33+
shell: bash
3334
run: |
34-
echo ::set-output name=NODE_VERSION::${{ matrix.target.node || '16' }}
35-
echo ::set-output name=ARCH::${{ matrix.target.emulate || 'amd64' }}
35+
echo "::set-output name=NODE_VERSION::${{ matrix.target.node || '16' }}"
36+
echo "::set-output name=ARCH::${{ matrix.target.emulate || 'amd64' }}"
3637
3738
- name: Install nix (for arm64)
3839
if: ${{ matrix.target.emulate }}
@@ -76,6 +77,7 @@ jobs:
7677
run: bash .github/workflows/pack.sh
7778

7879
- name: Upload asset
80+
shell: bash
7981
run: >
8082
bash .github/workflows/upload.sh
8183
'${{ github.repository }}'

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@koishijs/boilerplate",
3-
"version": "1.0.2",
3+
"version": "1.0.0",
44
"private": true,
55
"files": [
66
".env",
@@ -45,7 +45,7 @@
4545
"optionalDependencies": {
4646
"@koishijs/plugin-database-mongo": "^3.4.1",
4747
"@koishijs/plugin-database-mysql": "^4.5.1",
48-
"@koishijs/plugin-database-sqlite": "^1.4.2",
48+
"@koishijs/plugin-database-sqlite": "^1.4.3",
4949
"koishi-plugin-gocqhttp": "^2.3.0"
5050
},
5151
"dependencies": {

0 commit comments

Comments
 (0)