File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 7474 uses : actions/download-artifact@v5
7575 with :
7676 artifact-ids : ${{ needs.fetch_sqlite.outputs.artifact_id }}
77- path : sqlite/out
77+ path : sqlite-compiled
7878 - uses : actions/cache@v4
7979 with :
8080 path : " ${{ env.PUB_CACHE }}"
@@ -115,7 +115,7 @@ jobs:
115115
116116 - name : Web tests
117117 run : |
118- cp ../sqlite/out /*.wasm example/web
118+ cp ../sqlite-compiled /*.wasm example/web
119119 dart test -P web -r expanded
120120 # If browsers behave differently on different platforms, surely that's not our fault...
121121 # So, only run browser tests on Linux to be faster.
@@ -134,7 +134,7 @@ jobs:
134134 uses : actions/download-artifact@v5
135135 with :
136136 artifact-ids : ${{ needs.fetch_sqlite.outputs.artifact_id }}
137- path : sqlite/out
137+ path : sqlite-compiled
138138 - uses : actions/cache@v4
139139 with :
140140 path : " ${{ env.PUB_CACHE }}"
@@ -232,7 +232,7 @@ jobs:
232232 uses : actions/download-artifact@v5
233233 with :
234234 artifact-ids : ${{ needs.fetch_sqlite.outputs.artifact_id }}
235- path : sqlite/out
235+ path : sqlite-compiled
236236
237237 - uses : actions/cache@v4
238238 with :
Original file line number Diff line number Diff line change 3535 repository : simolus3/sqlite3.dart
3636 run-id : " 18697403389"
3737 github-token : ${{ github.token }}
38- path : sqlite/out
38+ path : sqlite-compiled
3939 - name : Set tag name
4040 id : tag
4141 run : |
4545 - name : Verify asset hashes
4646 run : dart run tool/write_asset_hashes.dart "${{ steps.tag.outputs.tag }}"
4747 - name : List libraries
48- run : ls -al sqlite/out
48+ run : ls -al sqlite-compiled
4949
5050 - name : Create Release
5151 env :
5656 body="Pending release for $tag"
5757 gh release create --draft "$tag" --title "$tag" --notes "$body"
5858
59- gh release upload "$tag" sqlite/out /*
59+ gh release upload "$tag" sqlite-compiled /*
6060
6161 publish :
6262 needs : [prepare_release]
You can’t perform that action at this time.
0 commit comments