Skip to content

Commit

Permalink
upgrade deps; update CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Jan 31, 2023
1 parent c0a0524 commit fdd8a4c
Show file tree
Hide file tree
Showing 4 changed files with 212 additions and 195 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'

- name: ACTIONS_ALLOW_UNSECURE_COMMANDS
id: ACTIONS_ALLOW_UNSECURE_COMMANDS
Expand All @@ -19,7 +24,7 @@ jobs:
- name: add cr
run: |
mkdir -p $GITHUB_WORKSPACE/bin
wget -O $GITHUB_WORKSPACE/bin/cr https://github.com/calcit-lang/calcit/releases/download/0.6.0/cr
wget -O $GITHUB_WORKSPACE/bin/cr https://github.com/calcit-lang/calcit/releases/download/0.6.20/cr
chmod +x $GITHUB_WORKSPACE/bin/cr
echo "::add-path::$GITHUB_WORKSPACE/bin"
Expand All @@ -41,7 +46,7 @@ jobs:
- name: Deploy to server
id: deploy
uses: Pendect/action-rsyncer@v1.1.0
uses: Pendect/action-rsyncer@v2.0.0
env:
DEPLOY_KEY: ${{secrets.rsync_private_key}}
with:
Expand Down
2 changes: 1 addition & 1 deletion assets/play-azure.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// import * as sdk from "microsoft-cognitiveservices-speech-sdk";
import * as bundle from "microsoft-cognitiveservices-speech-sdk/distrib/browser/microsoft.cognitiveservices.speech.sdk.bundle";
import * as bundle from "microsoft-cognitiveservices-speech-sdk/distrib/es2015/microsoft.cognitiveservices.speech.sdk.js";

console.log("speechsdk", bundle);

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"dependencies": {
"@calcit/procs": "^0.6.1",
"@ltd/j-toml": "^1.30.0",
"jdenticon": "^3.1.1",
"@calcit/procs": "^0.6.20",
"@ltd/j-toml": "^1.38.0",
"jdenticon": "^3.2.0",
"toml": "^3.0.0"
},
"devDependencies": {
"bottom-tip": "^0.1.3",
"crypto-js": "^4.1.1",
"feather-icons": "^4.29.0",
"js-base64": "^3.7.2",
"microsoft-cognitiveservices-speech-sdk": "^1.22.0",
"vite": "^3.0.3"
"js-base64": "^3.7.4",
"microsoft-cognitiveservices-speech-sdk": "^1.25.0",
"vite": "^4.0.4"
},
"version": "0.0.1"
}
Loading

0 comments on commit fdd8a4c

Please sign in to comment.