Skip to content

Commit 9269689

Browse files
committed
Fix directory names
1 parent c70a9a3 commit 9269689

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
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:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
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: |
@@ -45,7 +45,7 @@ jobs:
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:
@@ -56,7 +56,7 @@ jobs:
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]

0 commit comments

Comments
 (0)